13 lines
184 B
Swift
13 lines
184 B
Swift
import SwiftTelegramSdk
|
|
|
|
actor TGBotActor {
|
|
private var _bot: TGBot!
|
|
|
|
var bot: TGBot {
|
|
self._bot
|
|
}
|
|
|
|
func setBot(_ bot: TGBot) {
|
|
self._bot = bot
|
|
}
|
|
}
|