v4/discord/guild.go
2025-03-25 21:26:24 -07:00

11 lines
161 B
Go

package discord
import "context"
type IGuild interface {
GetMember(ctx context.Context, memberID string) (IMember, error)
}
type Guild struct {
ID string
}