18 lines
371 B
Go
18 lines
371 B
Go
|
package dbAccess
|
||
|
|
||
|
import (
|
||
|
"git.fjla.uk/owlboard/go-types/pkg/database"
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
fmt.Println("dbAccess/access.init() Will be used to push the component version number to the database")
|
||
|
}
|
||
|
|
||
|
func PutManyServices(collection string, data []database.Service) bool {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func PrintFromDbPackage() {
|
||
|
fmt.Println("hello from the dbAccess package")
|
||
|
}
|