initial commit

This commit is contained in:
basil 2025-06-02 13:18:10 -04:00
commit 313bd35b23
Signed by: basil
SSH key fingerprint: SHA256:y04xIFL/yqNaG9ae9Vl95vELtHfApGAIoOGLeVLP/fE
8 changed files with 591 additions and 0 deletions

9
channel.go Normal file
View file

@ -0,0 +1,9 @@
package discord
type Channel struct {
ID string `json:"id"`
}
func (u *Channel) BucketID() string {
return u.ID
}