mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
10 lines
100 B
Go
10 lines
100 B
Go
|
package database
|
||
|
|
||
|
type DB struct {
|
||
|
/* ... */
|
||
|
}
|
||
|
|
||
|
func Open(connString string) *DB {
|
||
|
return &DB{}
|
||
|
}
|