1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-17 09:26:08 -04:00
v2fly/app/internal/context.go
2015-12-11 11:01:20 +00:00

10 lines
136 B
Go

package internal
type contextImpl struct {
callerTag string
}
func (this *contextImpl) CallerTag() string {
return this.callerTag
}