1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-24 13:24:14 +00:00
Beego/orm/db_postgres.go
2013-07-30 20:32:38 +08:00

12 lines
137 B
Go

package orm
type dbBasePostgres struct {
dbBase
}
func newdbBasePostgres() dbBaser {
b := new(dbBasePostgres)
b.ins = b
return b
}