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

12 lines
131 B
Go

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