calendar-social/calsocial/__main__.py

10 lines
185 B
Python
Raw Normal View History

"""Main module for Calendar.social so the app can be run directly.
"""
from calsocial import CalendarSocialApp
app = CalendarSocialApp('calsocial')
2018-06-27 08:17:56 +00:00
app.run(host='0.0.0.0', port=80)