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