Files
EvoBGP/internal/domain/module.go
T

11 lines
282 B
Go

// Package domain holds pure types and invariants without I/O (plan §1).
package domain
// Module kinds for prefix sources (plan §6, §7.3).
const (
ModuleASPrefixes = "AS_PREFIXES"
ModuleCDNCIDRs = "CDN_CIDRS"
ModuleDomains = "DOMAINS"
ModuleIPRanges = "IP_RANGES"
)