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