go-zero/core/lang/lang.go

9 lines
115 B
Go
Raw Normal View History

2020-07-26 17:09:05 +08:00
package lang
var Placeholder PlaceholderType
type (
GenericType = interface{}
PlaceholderType = struct{}
)