mirror of
https://github.com/tgbot-collection/YYeTsBot.git
synced 2025-11-25 03:15:05 +08:00
12 lines
237 B
Python
12 lines
237 B
Python
#!/usr/bin/env python3
|
|
# coding: utf-8
|
|
import json
|
|
|
|
from tornado import escape
|
|
|
|
from common.utils import Cloudflare, setup_logger
|
|
|
|
setup_logger()
|
|
cf = Cloudflare()
|
|
escape.json_encode = lambda value: json.dumps(value, ensure_ascii=False)
|