twister/internal/config/config.go

13 lines
154 B
Go
Raw Normal View History

2024-10-09 11:59:42 +00:00
package config
2024-10-09 12:18:31 +00:00
// Configuration
2024-10-09 11:59:42 +00:00
type Config struct {
Version string
2024-10-09 12:18:31 +00:00
*Server `toml:"server"`
}
// Server config
type Server struct {
Address string
2024-10-09 11:59:42 +00:00
}