This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Builder Utilities
SonMooSans edited this page Aug 4, 2022
·
1 revision
BJDA also has some Utilities to create Message, Embed, Action Row, Buttons and more.
It can give you a better quality of code.
embed(
title = "Title",
author = author(
name = "MONEY"
)
)
Row(
Button.primary(
id = "__todo-create",
label = "Add Todo"
)
)
message {
content("Hello World")
}
event.reply {
content("Do you sure?")
embed(
title = "Delete the Item",
color = Color.RED
)
row(
Button.danger(
label = "Delete"
)
)
}.queue()
Give my Github Repository a Star to support my work!