interactions yay!!
This commit is contained in:
parent
b9a05bedf9
commit
f60033a3e4
30 changed files with 716 additions and 44 deletions
14
discord/guildservice.go
Normal file
14
discord/guildservice.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package discord
|
||||
|
||||
import "context"
|
||||
|
||||
type IGuildService interface {
|
||||
GetGuild(ctx context.Context, guildID string) (IGuild, error)
|
||||
}
|
||||
|
||||
type GuildService struct {
|
||||
}
|
||||
|
||||
func (gs *GuildService) GetGuild(ctx context.Context, guildID string) (IGuild, error) {
|
||||
return nil, nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue