go-zero/core/lang/lang.go
2022-01-01 19:24:35 +08:00

12 lines
266 B
Go

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