1
0
mirror of https://github.com/astaxie/beego.git synced 2025-02-17 00:37:05 +00:00
Beego/orm/db_postgres.go

12 lines
137 B
Go
Raw Normal View History

2013-07-30 20:32:38 +08:00
package orm
type dbBasePostgres struct {
dbBase
}
func newdbBasePostgres() dbBaser {
b := new(dbBasePostgres)
b.ins = b
return b
}