11 lines
365 B
Python
11 lines
365 B
Python
|
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
|
||
|
|