fix: pass context.Background()

This commit is contained in:
Derrick Hammer 2024-02-27 03:43:34 -05:00
parent 86dc8c8b9a
commit 89c03f9cee
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ func BuildProtocols(cm *config.Manager) fx.Option {
return err
}
err = protocol.Init()
err = protocol.Init(context.Background())
if err != nil {
return err
}