Initialize services

This commit is contained in:
Dustin Pianalto
2021-01-23 03:11:12 -09:00
parent e2f97afa6d
commit ccfecd0965
6 changed files with 52 additions and 31 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ type Server struct {
type ServerService interface {
ServerByID(id int) (Server, error)
ServerByName(name string) (Server, error)
ServerByName(name string, guild Guild) (Server, error)
CreateServer(s Server) (Server, error)
DeleteServer(s Server) error
UpdateServer(s Server) (Server, error)