gopay/internal/context/context.go

14 lines
241 B
Go
Raw Normal View History

2024-06-02 11:57:14 +00:00
package context
import "git.supernets.org/perp/gopay/internal/config"
// Request context
type Context struct {
Config *config.Config
}
// Return a new Context
func New(config *config.Config) *Context {
return &Context{Config: config}
}