1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-18 11:34:13 +00:00
Beego/orm/db_postgres.go

12 lines
137 B
Go
Raw Normal View History

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