mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
12 lines
274 B
Go
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{}
|
|
)
|