Files
ctrld/cmd/cli/library.go
2023-09-22 18:44:24 +07:00

16 lines
238 B
Go

package cli
type AppCallback struct {
HostName func() string
LanIp func() string
MacAddress func() string
Exit func(error string)
}
type AppConfig struct {
CdUID string
HomeDir string
Verbose int
LogPath string
}