portal/interfaces/database.go

7 lines
85 B
Go

package interfaces
type Database interface {
Init(p Portal) error
Start() error
}