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