mirror of
https://github.com/astaxie/beego.git
synced 2024-11-10 21:20:55 +00:00
12 lines
137 B
Go
12 lines
137 B
Go
|
package orm
|
||
|
|
||
|
type dbBasePostgres struct {
|
||
|
dbBase
|
||
|
}
|
||
|
|
||
|
func newdbBasePostgres() dbBaser {
|
||
|
b := new(dbBasePostgres)
|
||
|
b.ins = b
|
||
|
return b
|
||
|
}
|