You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
379 B

package main
import (
"github.com/adamveld12/gopherhole/internal"
)
type StartupConfig struct {
DatabaseURL string `json:"database"`
CacheURL string `json:"cache"`
HTTPAddr string `json:"http-addr"`
DNSAddr string `json:"dns-addr"`
Recursors []string `json:"recursors"`
Rules []internal.Rule `json:"rules"`
}