1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-24 12:14:13 +00:00
Beego/orm/db_oracle.go

14 lines
166 B
Go
Raw Normal View History

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