fix: implement database getter

This commit is contained in:
Derrick Hammer 2024-01-15 22:02:10 -05:00
parent 05c0aba484
commit 51a1f6051b
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 2 deletions

View File

@ -30,8 +30,7 @@ type PortalImpl struct {
}
func (p *PortalImpl) Database() interfaces.Database {
//TODO implement me
panic("implement me")
return p.database
}
func NewPortal() interfaces.Portal {