9 lines
163 B
Python
9 lines
163 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from aore import phias
|
|
|
|
application = phias.app
|
|
|
|
if __name__ == '__main__':
|
|
application.run(host='localhost', port=55001, debug=True)
|