netfetch/internal/cli/cli.go

12 lines
139 B
Go

package cli
type Options struct {
ExePath string
ConfigPath string
DefaultPort int
}
type Command interface {
Execute() error
}