v2ray-core/common/serial/string.go

13 lines
216 B
Go

package serial
// An interface for any objects that has string presentation.
type String interface {
String() string
}
type StringLiteral string
func (this StringLiteral) String() string {
return string(this)
}