您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ext_timezone.py 204B

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()