Package-level declarations
Types
Link copied to clipboard
abstract class BaseSlashCommand(val commandName: String) : InterceptorHandler<SlashCommandContext, SlashCommandInterceptor>
Link copied to clipboard
data class DiscoveryResult(val elapsedTime: Long, val slashCommands: List<BaseSlashCommand>, val userCommands: List<UserCommand>, val messageCommands: List<MessageCommand>)
Link copied to clipboard
abstract class MessageCommand(val commandName: String) : InterceptorHandler<MessageCommandContext, MessageCommandInterceptor>
Link copied to clipboard
Link copied to clipboard
object SlashUtils
Link copied to clipboard
abstract class UserCommand(val commandName: String) : InterceptorHandler<UserCommandContext, UserCommandInterceptor>