You've already forked v2ray-core
13 lines
216 B
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)
|
|
}
|