fix: use DatabaseService

This commit is contained in:
Derrick Hammer 2024-01-16 01:30:06 -05:00
parent af4a2eed4a
commit d017b0741c
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ func startProtocolRegistry(p interfaces.Portal) error {
}
func startDatabase(p interfaces.Portal) error {
return p.Database().Start()
return p.DatabaseService().Start()
}
func getStartList() []startFunc {