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

im.actor.server.cli.BotHandlers.scala Maven / Gradle / Ivy

package im.actor.server.cli

import scala.concurrent.Future

private[cli] trait BotHandlers {
  this: CliHandlers ⇒

  def createBot(rq: CreateBot): Future[Unit] = {
    for (resp ← request(BotService, rq))
      yield println(s"Bot user created, token: ${resp.token}")
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy