Init: bootstrap go module with basic framework

This commit is contained in:
2025-09-25 08:14:34 +08:00
commit 60f534be1e
47 changed files with 1084 additions and 0 deletions

14
models/autoRoleMsg.go Normal file
View File

@@ -0,0 +1,14 @@
package models
import "github.com/uptrace/bun"
type AutoRoleMsg struct {
bun.BaseModel `bun:"table:auto_role_msg"`
GuildId int `bun:"guild_id,pk"`
MessageId string `bun:"message_id,pk"`
RoleId string `bun:"role_id,notnull"`
Emoji string `bun:"emoji"`
Guild *Guild `bun:"belongs-to:guild,join:guild_id=id"`
}