You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. import os
  2. import time
  3. from dify_app import DifyApp
  4. def init_app(app: DifyApp):
  5. os.environ["TZ"] = "UTC"
  6. # windows platform not support tzset
  7. if hasattr(time, "tzset"):
  8. time.tzset()