14 lines
269 B
Go
14 lines
269 B
Go
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
|
|
}
|