Files
sqimple/query.go
T

7 lines
73 B
Go
Raw Normal View History

2026-07-07 20:29:58 +01:00
package sqimple
2026-07-07 17:25:02 +01:00
type Query interface {
Args() []any
String() string
}