iris/_examples/mvc/overview/database/sqlite.go
Gerasimos (Makis) Maropoulos d55bb34766 add a new 'overview' MVC example
Former-commit-id: f73cbf6010595c639f6c5b5119e2ec41bc9802a5
2020-06-21 00:12:07 +03:00

6 lines
94 B
Go

package database
type sqlite struct{}
func (db *sqlite) Exec(q string) error { return nil }