mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
d55bb34766
Former-commit-id: f73cbf6010595c639f6c5b5119e2ec41bc9802a5
11 lines
180 B
Go
11 lines
180 B
Go
package database
|
|
|
|
import "fmt"
|
|
|
|
type mysql struct{}
|
|
|
|
func (db *mysql) Exec(q string) error {
|
|
// simulate an error response.
|
|
return fmt.Errorf("mysql: not implemented <%s>", q)
|
|
}
|