1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-17 10:44:26 -04:00
v2fly/common/serial/string.go

12 lines
154 B
Go
Raw Normal View History

2015-12-02 10:19:39 -05:00
package serial
type String interface {
String() string
}
type StringLiteral string
func (this StringLiteral) String() string {
return string(this)
}