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