core/utils/encoders.py

11 lines
219 B
Python
Raw Normal View History

2024-03-06 18:57:04 +00:00
from decimal import Decimal
2025-03-20 08:55:21 +00:00
import orjson
2024-03-06 18:57:04 +00:00
2025-03-20 08:55:21 +00:00
class CustomJSONEncoder(orjson.JSONEncoder):
2024-03-06 18:57:04 +00:00
def default(self, obj):
if isinstance(obj, Decimal):
return str(obj)
return super().default(obj)