2023-07-19 01:18:55 +01:00

22 lines
400 B
Go

package dbAccess
import (
"fmt"
"git.fjla.uk/owlboard/go-types/pkg/database"
"git.fjla.uk/owlboard/mq-client/log"
)
func init() {
log.Msg.Info("Pushing mq-client version to database")
fmt.Println("ACTUALLY DO THIS HERE!")
}
func PutManyServices(collection string, data []database.Service) bool {
return false
}
func PrintFromDbPackage() {
fmt.Println("hello from the dbAccess package")
}