All Downloads are FREE. Search and download functionalities are using the official Maven repository.

repos.InlineTemplatesRepo.kt Maven / Gradle / Ivy

The newest version!
package dev.inmo.plagubot.plugins.inline.queries.repos

import dev.inmo.plagubot.plugins.inline.queries.models.OfferTemplate

class InlineTemplatesRepo(
    private val _templates: MutableSet
) {
    internal val templates
        get() = _templates.toList()
    suspend fun addTemplate(offerTemplate: OfferTemplate): Boolean {
        return _templates.add(offerTemplate)
    }
    suspend fun dropTemplate(offerTemplate: OfferTemplate): Boolean {
        return _templates.remove(offerTemplate)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy