Add Auto Role Feature
CI / build (push) Has been cancelled

This commit is contained in:
Dustin Pianalto
2021-06-22 01:29:38 -08:00
parent 65bb218260
commit 61d500946e
7 changed files with 282 additions and 2 deletions
+3 -1
View File
@@ -4,8 +4,10 @@ import "github.com/dustinpianalto/goff"
var UserService goff.UserService
var GuildService goff.GuildService
var RoleService goff.RoleService
func InitalizeServices(us goff.UserService, gs goff.GuildService) {
func InitalizeServices(us goff.UserService, gs goff.GuildService, rs goff.RoleService) {
UserService = us
GuildService = gs
RoleService = rs
}