feat: add conds pkg

This commit is contained in:
yanghao05
2025-05-06 10:00:48 +08:00
parent b1e0efd2f5
commit 4740d97695

View File

@@ -0,0 +1,11 @@
package conds
import (
. "github.com/go-jet/jet/v2/postgres"
)
type Cond func(BoolExpression) BoolExpression
func Default() BoolExpression {
return BoolExp(Bool(true))
}