Files
2025-08-02 00:10:12 +08:00

11 lines
173 B
Go

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