main
Motiejus Jakštys 2021-05-24 00:11:58 +03:00
parent 0e24590e1d
commit 7e55ae4ca5
2 changed files with 28 additions and 24 deletions

View File

@ -12,9 +12,8 @@ import (
const _description = "Create an LXC-compatible container configuration"
type (
// Command is an implementation of go-flags.Command
Command struct {
type Command struct {
configer func(io.ReadSeeker, io.Writer) error
Stdout io.Writer
@ -23,8 +22,8 @@ type (
Outfile string `long:"outfile" description:"Output path, stdout is '-'"`
} `positional-args:"yes" required:"yes"`
}
)
// NewCommand creates a new Command struct
func NewCommand() *Command {
return &Command{
configer: lxcconfig.LXCConfig,
@ -32,7 +31,10 @@ func NewCommand() *Command {
}
}
// ShortDesc returns the command's short description
func (*Command) ShortDesc() string { return _description }
// LongDesc returns the command's long description
func (*Command) LongDesc() string { return _description }
// Execute executes lxcconfig Command

View File

@ -12,9 +12,8 @@ import (
const _description = "Flatten a docker container image to a tarball"
type (
// Command is an implementation of go-flags.Command
Command struct {
type Command struct {
flattener func(io.ReadSeeker, io.Writer) error
Stdout io.Writer
@ -23,8 +22,8 @@ type (
Outfile string `long:"outfile" desc:"Output path, stdout is '-'"`
} `positional-args:"yes" required:"yes"`
}
)
// NewCommand creates a new Command struct
func NewCommand() *Command {
return &Command{
flattener: rootfs.Flatten,
@ -32,7 +31,10 @@ func NewCommand() *Command {
}
}
// ShortDesc returns the command's short description
func (*Command) ShortDesc() string { return _description }
// LongDesc returns the command's long description
func (*Command) LongDesc() string { return _description }
// Execute executes rootfs Command