14 lines
191 B
Go
14 lines
191 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||
|
||
package appcontext
|
||
|
||
var (
|
||
a *Context
|
||
)
|
||
|
||
func New() *Context {
|
||
c := &Context{}
|
||
return c
|
||
}
|