13 lines
154 B
Go
13 lines
154 B
Go
package config
|
|
|
|
// Configuration
|
|
type Config struct {
|
|
Version string
|
|
*Server `toml:"server"`
|
|
}
|
|
|
|
// Server config
|
|
type Server struct {
|
|
Address string
|
|
}
|