fix: initDatabase no longer needs to pass p to init

This commit is contained in:
Derrick Hammer 2024-01-19 15:45:02 -05:00
parent fbbb22145d
commit 5323e43bdb
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ func initAccess(p interfaces.Portal) error {
} }
func initDatabase(p interfaces.Portal) error { func initDatabase(p interfaces.Portal) error {
return p.DatabaseService().Init(p) return p.DatabaseService().Init()
} }
func initProtocols(p interfaces.Portal) error { func initProtocols(p interfaces.Portal) error {