mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-09 17:33:44 +00:00
12 lines
160 B
Python
12 lines
160 B
Python
try:
|
|
import ujson as json
|
|
except ImportError:
|
|
import json
|
|
|
|
|
|
def dumps(data):
|
|
return json.dumps(data)
|
|
|
|
|
|
def loads(data):
|
|
return json.loads(data)
|