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 dbBaseSqlite struct {
|
||
|
dbBase
|
||
|
}
|
||
|
|
||
|
func newdbBaseSqlite() dbBaser {
|
||
|
b := new(dbBaseSqlite)
|
||
|
b.ins = b
|
||
|
return b
|
||
|
}
|