mirror of
https://github.com/csunny/DB-GPT.git
synced 2026-07-22 17:11:15 +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() |