Files
gluetun/internal/cli/cli.go

12 lines
149 B
Go
Raw Normal View History

package cli
2020-02-08 21:50:17 +00:00
type CLI struct {
repoServersPath string
}
func New() *CLI {
return &CLI{
2021-09-06 13:41:45 +00:00
repoServersPath: "./internal/storage/servers.json",
}
}