We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e0f7de commit e246f01Copy full SHA for e246f01
1 file changed
core/src/main/kotlin/org/dreamexposure/discal/core/business/RsvpService.kt
@@ -23,11 +23,12 @@ class RsvpService(
23
private val rsvpCache: RsvpCache,
24
private val embedService: EmbedService,
25
private val calendarService: CalendarService,
26
- private val staticMessageService: StaticMessageService,
27
private val beanFactory: BeanFactory,
28
) {
29
private val discordClient: DiscordClient
30
get() = beanFactory.getBean(DiscordClient::class.java)
+ private val staticMessageService: StaticMessageService
31
+ get() = beanFactory.getBean(StaticMessageService::class.java)
32
33
suspend fun getRsvp(guildId: Snowflake, eventId: String): Rsvp {
34
var rsvp = rsvpCache.get(guildId, eventId)
0 commit comments