2023-07-17 12:48:36 +01:00
|
|
|
package dbAccess
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2023-07-18 00:25:13 +01:00
|
|
|
|
|
|
|
"git.fjla.uk/owlboard/go-types/pkg/database"
|
2023-07-19 01:18:55 +01:00
|
|
|
"git.fjla.uk/owlboard/mq-client/log"
|
2023-07-17 12:48:36 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2023-07-19 01:18:55 +01:00
|
|
|
log.Msg.Info("Pushing mq-client version to database")
|
|
|
|
fmt.Println("ACTUALLY DO THIS HERE!")
|
2023-07-17 12:48:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func PutManyServices(collection string, data []database.Service) bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func PrintFromDbPackage() {
|
|
|
|
fmt.Println("hello from the dbAccess package")
|
2023-07-18 00:25:13 +01:00
|
|
|
}
|