16 lines
204 B
Python
16 lines
204 B
Python
#!/usr/bin/python
|
|
# -*- coding:utf-8 _*-
|
|
"""
|
|
@author: pengtao
|
|
@file: env.py
|
|
@time: 2020/03/20
|
|
"""
|
|
import os
|
|
|
|
|
|
if os.getenv("IS_DEBUG"):
|
|
is_debug = True
|
|
else:
|
|
is_debug = False
|
|
is_debug = True
|