mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
16 lines
238 B
Go
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
|
|
}
|