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") }