telegram-use-proper-grammar.../propergrammar/__init__.py

10 lines
179 B
Python

#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
from pathlib import Path
from .telebot import start_bot
def main():
start_bot(Path('telegrambot.txt').read_text().strip())