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