acdform/config.go

24 lines
395 B
Go

package acdform
import "codeberg.org/eviedelta/dwhook"
var Hook *dwhook.Webhook
var AuditHook *dwhook.Webhook
var Conf Config
type Config struct {
Submissions struct {
NotifTopics []string
DiscordWebhook string
}
Audit struct {
NotifTopics []string
DiscordWebhook string
}
HostEmail string // used for the thumbnail fetcher
BaseURL string
ThumbnailDir string
}