mirror of
https://github.com/Alexander-D-Karpov/netfetch.git
synced 2026-03-16 22:07:03 +03:00
12 lines
139 B
Go
12 lines
139 B
Go
package cli
|
|
|
|
type Options struct {
|
|
ExePath string
|
|
ConfigPath string
|
|
DefaultPort int
|
|
}
|
|
|
|
type Command interface {
|
|
Execute() error
|
|
}
|