2023-07-18 00:25:13 +01:00

22 lines
461 B
Go

package dbAccess
import (
"fmt"
"git.fjla.uk/owlboard/go-types/pkg/database"
"git.fjla.uk/owlboard/mq-client/helpers"
)
func init() {
fmt.Println("dbAccess/access.init() Will be used to push the component version number to the database")
fmt.Printf("Version: %s\n", helpers.Version)
}
func PutManyServices(collection string, data []database.Service) bool {
return false
}
func PrintFromDbPackage() {
fmt.Println("hello from the dbAccess package")
}