1
0
Fork 0

app/config.go: minor fixes

This commit is contained in:
Henrik Hautakoski 2025-10-16 22:49:03 +02:00
parent 9786dc2c53
commit 308d88c369

View file

@ -23,12 +23,11 @@ type Providers struct {
type Services struct { type Services struct {
IPLookup string `yaml:"IPLookup"` IPLookup string `yaml:"IPLookup"`
// DigitalOcean DigitalOceanService `yaml:"digitalocean"`
} }
type Config struct { type Config struct {
Services Services `yaml:"services"` Services Services `yaml:"services"`
Providers map[string]map[string]interface{} Providers map[string]map[string]any
Updates map[string]Domain Updates map[string]Domain
} }