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