7 lines
182 B
Go
7 lines
182 B
Go
type Driver interface {
|
|
Open(name string) (Conn, error)
|
|
}
|
|
|
|
type QueryerContext interface {
|
|
QueryContext(ctx context.Context, query string, args []NamedValue) (Rows, error)
|
|
}
|