Skip to content

Commit b9008d8

Browse files
committed
Fix windows compilation for the new chroot tar
1 parent 07a0943 commit b9008d8

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package unpacker // import "code.cloudfoundry.org/grootfs/base_image_puller/unpacker"
2+
3+
import (
4+
"code.cloudfoundry.org/grootfs/base_image_puller"
5+
"code.cloudfoundry.org/lager"
6+
)
7+
8+
type UnpackStrategy struct {
9+
Name string
10+
WhiteoutDevicePath string
11+
}
12+
13+
type TarUnpacker struct{}
14+
15+
func NewTarUnpacker(unpackStrategy UnpackStrategy) (*TarUnpacker, error) {
16+
panic("not implemented")
17+
}
18+
19+
func (u *TarUnpacker) Unpack(logger lager.Logger, spec base_image_puller.UnpackSpec) error {
20+
panic("not implemented")
21+
}

0 commit comments

Comments
 (0)