mirror of
https://github.com/kataras/iris.git
synced 2025-02-09 02:34:55 +01:00
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)
|
|
}
|