qrz/vendor/xorm.io/builder/as.go
2023-08-23 17:32:53 +02: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}
}