CodeProperties

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

Container for code properties.

Constructors

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

Properties

Link copied to clipboard
val bot: BotProperties

Properties for the current bot.

Link copied to clipboard
val library: LibraryProperties

Properties for the core library.

Link copied to clipboard
val startup: Instant

The Instant this bot started.