context.go 136 B

123456789
  1. package internal
  2. type contextImpl struct {
  3. callerTag string
  4. }
  5. func (this *contextImpl) CallerTag() string {
  6. return this.callerTag
  7. }