12 lines
131 B
Go
12 lines
131 B
Go
package appcontext
|
||
|
||
var (
|
||
с *Context
|
||
)
|
||
|
||
// New is a Context creation function
|
||
func New() *Context {
|
||
c := &Context{}
|
||
return c
|
||
}
|