11 lines
195 B
Python
11 lines
195 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
This is the entry point for the WSGI server
|
||
|
"""
|
||
|
from stickynotes import make_app
|
||
|
|
||
|
application = make_app()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
application.run(debug=True)
|