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