Package me.jakejmattson.discordkt

Types

Link copied to clipboard
data class BotProperties(    val raw: Properties,     val name: String?,     val description: String?,     val url: String?,     val version: String?)

A collection of custom bot properties read from a bot.properties file.

Link copied to clipboard
data class CodeProperties(    val library: LibraryProperties,     val bot: BotProperties,     val startup: Instant = Instant.now())

Container for code properties.

Link copied to clipboard
abstract class Discord
Link copied to clipboard
data class LibraryProperties(    val version: String,     val kotlin: String,     val kord: String)

A collection of library properties read from internal library.properties file.