avatar/cms/micro-cms.py

11 lines
365 B
Python
Raw Normal View History

2022-10-18 20:34:17 +00:00
class Project :
@staticmethod
def create (**_args) :
_version = "0.0.1" if "version" not in _args else _args['version']
_context = "" if 'context' not in _args else _args['context']
_logo = "logo.png"
_system = {"version":_version,"context":_context,"logo":_logo}
_app = {"port":8084,"debug":True}
pass