fix golint issues in core/lang (#492)

master
Kevin Wan 4 years ago committed by GitHub
parent af68caeaf6
commit 059027bc9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save