1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 18:07:01 +00:00
Files
kararas_iris/_examples/project/pkg/database/database.go
Gerasimos (Makis) Maropoulos 4dfd4c53d3 new minor features
2022-04-09 14:51:34 +03:00

10 lines
100 B
Go

package database
type DB struct {
/* ... */
}
func Open(connString string) *DB {
return &DB{}
}