11 lines
161 B
Go
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
|
|
}
|