-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a61d8fa
commit 1e72e95
Showing
3 changed files
with
30 additions
and
12 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
common/src/main/kotlin/net/cakeyfox/common/Placeholders.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package net.cakeyfox.common | ||
|
||
object Placeholders { | ||
const val USER_GLOBAL_NAME = "{user}" | ||
const val USER_MENTION = "{@user}" | ||
const val USER_USERNAME = "{user.username}" | ||
const val USER_ID = "{user.id}" | ||
const val USER_AVATAR = "{user.avatar}" | ||
const val GUILD_NAME = "{guild.name}" | ||
const val GUILD_ID = "{guild.id}" | ||
const val GUILD_MEMBERS = "{guild.memberCount}" | ||
const val GUILD_ICON = "{guild.icon}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters