context.go 167 B

1234567891011
  1. package application
  2. import (
  3. "context"
  4. "git.shuncheng.lu/bigthing/gocommon/pkg/logger"
  5. )
  6. func NewContext() context.Context {
  7. return logger.NewTraceIdContext()
  8. }