22 lines
374 B
Swift
22 lines
374 B
Swift
//
|
|
// BotConnection.swift
|
|
// KissGram
|
|
//
|
|
// Created by ened-book-m1 on 2023/06/17.
|
|
//
|
|
|
|
import Foundation
|
|
import TelegramVaporBot
|
|
|
|
actor TGBotConnection {
|
|
private var _connection: TGConnectionPrtcl!
|
|
|
|
var connection: TGConnectionPrtcl {
|
|
self._connection
|
|
}
|
|
|
|
func setConnection(_ conn: TGConnectionPrtcl) {
|
|
self._connection = conn
|
|
}
|
|
}
|