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

12 lines
131 B
Go
Raw Normal View History

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