ee63e80f77
Signed-off-by: Alejandro Mery <amery@jpi.io>
13 lines
164 B
Go
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",
|
|
}
|