go-zero/core/lang/lang.go
2021-02-20 18:21:23 +08:00

12 lines
274 B
Go

package lang
// Placeholder is a placeholder object that can be used globally.
var Placeholder PlaceholderType
type (
// GenericType can be used to hold any type.
GenericType = interface{}
// PlaceholderType represents a placeholder type.
PlaceholderType = struct{}
)