refactor: define Protocol under Config for completeness

This commit is contained in:
Derrick Hammer 2024-02-28 06:11:04 -05:00
parent d9d85f2804
commit 7edab13afe
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ var (
type Config struct { type Config struct {
Core CoreConfig `mapstructure:"core"` Core CoreConfig `mapstructure:"core"`
Protocol map[string]ProtocolConfig `mapstructure:"protocol"`
} }
type Manager struct { type Manager struct {