refactor: store protocol config in root

This commit is contained in:
Derrick Hammer 2024-02-28 09:43:06 -05:00
parent bfb8559e32
commit 80d34000a0
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -92,6 +92,8 @@ func (m *Manager) ConfigureProtocol(name string, cfg ProtocolConfig) error {
return err
}
m.root.Protocol[name] = cfg
return nil
}