20 lines
167 B
Go
20 lines
167 B
Go
package clause
|
|
|
|
type ExprInterface interface {
|
|
}
|
|
|
|
type Expr struct {
|
|
}
|
|
|
|
type Average struct {
|
|
}
|
|
|
|
type Minimum struct {
|
|
}
|
|
|
|
type Maximum struct {
|
|
}
|
|
|
|
type Sum struct {
|
|
}
|