Archived
1

Initial commit

This commit is contained in:
Vladimir Hodakov
2017-10-04 17:56:18 +04:00
commit 4fec8f0fe7
14 changed files with 449 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
package appcontext
var (
a *Context
)
func New() *Context {
c := &Context{}
return c
}