twister/internal/config/config.go
2024-10-09 13:20:00 +01:00

13 lines
154 B
Go

package config
// Configuration
type Config struct {
Version string
*Server `toml:"server"`
}
// Server config
type Server struct {
Address string
}