db/raw.go
2023-04-12 15:58:25 +08:00

8 lines
98 B
Go

package db
type Expression string
func Raw(expr string) Expression {
return Expression(expr)
}