OnlyBiggg commited on
Commit
0bcfda2
·
1 Parent(s): f2db489
Files changed (1) hide show
  1. app/api/routes.py +1 -0
app/api/routes.py CHANGED
@@ -13,6 +13,7 @@ router = APIRouter()
13
  templates = Jinja2Templates(directory="app/templates")
14
 
15
  def to_datetime_from_Dialogflow(time: dict):
 
16
  date_time = datetime(int(time["year"]), int(time["month"]), int(time["day"]))
17
  return date_time
18
 
 
13
  templates = Jinja2Templates(directory="app/templates")
14
 
15
  def to_datetime_from_Dialogflow(time: dict):
16
+ print(time)
17
  date_time = datetime(int(time["year"]), int(time["month"]), int(time["day"]))
18
  return date_time
19