mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-12 00:07:43 -06:00
12 lines
149 B
Go
12 lines
149 B
Go
package cli
|
|
|
|
type CLI struct {
|
|
repoServersPath string
|
|
}
|
|
|
|
func New() *CLI {
|
|
return &CLI{
|
|
repoServersPath: "./internal/storage/servers.json",
|
|
}
|
|
}
|