2022-07-02 20:58:43 +00:00

12 lines
149 B
Go

package cli
type CLI struct {
repoServersPath string
}
func New() *CLI {
return &CLI{
repoServersPath: "./internal/storage/servers.json",
}
}