v2ray-core/common/serial/string.go

13 lines
216 B
Go
Raw Normal View History

2015-12-02 15:19:39 +00:00
package serial
2015-12-03 15:57:23 +00:00
// An interface for any objects that has string presentation.
2015-12-02 15:19:39 +00:00
type String interface {
String() string
}
type StringLiteral string
func (this StringLiteral) String() string {
return string(this)
}