Reorg and add services

This commit is contained in:
Dustin Pianalto
2020-10-09 21:34:47 -08:00
parent 96b9c3825c
commit 134af6b013
19 changed files with 658 additions and 432 deletions
+11
View File
@@ -0,0 +1,11 @@
package services
import "github.com/dustinpianalto/goff"
var UserService goff.UserService
var GuildService goff.GuildService
func InitalizeServices(us goff.UserService, gs goff.GuildService) {
UserService = us
GuildService = gs
}