builder/as.go
2022-09-29 13:28:04 -04:00

11 lines
160 B
Go

package builder
type Aliased struct {
table interface{}
alias string
}
func As(table interface{}, alias string) *Aliased {
return &Aliased{table, alias}
}