mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 21:22:35 +00:00
Files
9a05e671fbe70d78a08f132c1e332b23274146bd
10 lines
123 B
Go
10 lines
123 B
Go
package handler
|
|||
|
|||
import (
|
|||
"database/sql"
|
|||
)
|
|||
|
|||
type Executer interface {
|
|||
Exec(string, ...interface{}) (sql.Result, error)
|
|||
}
|