timetable-mgr/src/dbAccess/access.go

18 lines
371 B
Go
Raw Normal View History

2023-07-17 12:48:36 +01:00
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")
}