We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add role-reaction system with Discord's button.
This system must be edited with the new command general /role-reaction.
/role-reaction
/role-reaction create
/role-reaction edit
/role-reaction show
/role-reaction delete
Creates a new type RoleReactionInterface and RoleReaction:
RoleReactionInterface
RoleReaction
type RoleReactionInterface struct { gorm.Model GuildID string ChannelID string MessageID string RoleReactions []RoleReaction } type RoleReaction struct { gorm.Model RoleReactionInterfaceID uint Content string Emoji string }
These new types must be compatible with the interface gokord.DataBase.
gokord.DataBase
RoleReactionInterface must have a method called GenMessage which generates the message to send.
GenMessage
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add role-reaction system with Discord's button.
This system must be edited with the new command general
/role-reaction
./role-reaction create
- Create a new role-reaction interface/role-reaction edit
- Edit a role-reaction/role-reaction show
- Show every role-reaction interface/role-reaction delete
- Delete a role-reaction interfaceCreates a new type
RoleReactionInterface
andRoleReaction
:These new types must be compatible with the interface
gokord.DataBase
.RoleReactionInterface
must have a method calledGenMessage
which generates the message to send.The text was updated successfully, but these errors were encountered: