Files
music-agregator/internal/config/config.go
T
2026-05-03 15:49:35 +02:00

9 lines
131 B
Go

package config
type Config struct {
Server struct {
Port string `yaml:"port"`
Host string `yaml:"host"`
} `yaml:"server"`
}