mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 02:27:31 +00:00
Files
6cf453f8f759fdec10764a6a815111ad74bcf92c
10 lines
123 B
Go
10 lines
123 B
Go
package handler
|
|||
|
|||
import (
|
|||
"database/sql"
|
|||
)
|
|||
|
|||
type Executer interface {
|
|||
Exec(string, ...interface{}) (sql.Result, error)
|
|||
}
|