22 lines
400 B
Go
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")
|
|
}
|