clause.go 82 B

123456
  1. package clause
  2. type Clause interface {
  3. Clause() (string, error)
  4. Args() []any
  5. }