8 lines
93 B
Go
8 lines
93 B
Go
package sqimple
|
|
|
|
type OrderBy string
|
|
|
|
func (o OrderBy) String() string {
|
|
return string(o)
|
|
}
|