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

12 lines
154 B
Go
Raw Normal View History

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