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