mysql.go 148 B

123456789
  1. package database
  2. import "fmt"
  3. type mysql struct{}
  4. func (db *mysql) Exec(q string) error {
  5. return fmt.Errorf("mysql: not implemented <%s>", q)
  6. }