Files
ezbookkeeping/pkg/core/context.go
T

12 lines
192 B
Go

package core
import "context"
// Context is the base context of ezBookkeeping
type Context interface {
context.Context
ClientIP() string
GetContextId() string
GetClientLocale() string
}