17 lines
260 B
Go
17 lines
260 B
Go
package config
|
|
|
|
import "embed"
|
|
|
|
var Core embed.FS
|
|
var Port *int
|
|
var HTTPSPort *int
|
|
var Color *bool
|
|
|
|
type MyConfig struct {
|
|
App struct {
|
|
Name string `toml:"name"`
|
|
Version string `toml:"version"`
|
|
Authors []string `toml:"authors"`
|
|
} `toml:"app"`
|
|
}
|