mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-11-05 01:46:30 +00:00
6 lines
119 B
Python
6 lines
119 B
Python
import json
|
|
from datetime import date
|
|
|
|
def serialize(obj):
|
|
if isinstance(obj, date):
|
|
return obj.isoformat() |