11 lines
204 B
Go
11 lines
204 B
Go
// i2_bot – Instinct PokememBro Bot
|
||
// Copyright (c) 2017-2018 Vladimir "fat0troll" Hodakov
|
||
|
||
package appcontext
|
||
|
||
// New is a Context creation function
|
||
func New() *Context {
|
||
c := &Context{}
|
||
return c
|
||
}
|