gorm/clause/expr.go

20 lines
167 B
Go
Raw Normal View History

2020-01-29 14:22:44 +03:00
package clause
type ExprInterface interface {
}
type Expr struct {
}
type Average struct {
}
type Minimum struct {
}
type Maximum struct {
}
type Sum struct {
}