Files
atomctl/templates/project/database/conds/conds.go.tpl
2025-05-06 10:00:48 +08:00

12 lines
175 B
Smarty

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