Files
jpictl/cmd/jpictl/config.go
T
amery ee63e80f77 zones: add resolver and domain
Signed-off-by: Alejandro Mery <amery@jpi.io>
2023-08-21 21:53:28 +00:00

13 lines
164 B
Go

package main
// Config describes the repository
type Config struct {
Base string
Domain string
}
var cfg = &Config{
Base: "./m",
Domain: "m.jpi.cloud",
}