forked from gergely/calendar-social
10 lines
185 B
Python
10 lines
185 B
Python
"""Main module for Calendar.social so the app can be run directly.
|
|
"""
|
|
|
|
from calsocial import CalendarSocialApp
|
|
|
|
|
|
app = CalendarSocialApp('calsocial')
|
|
|
|
app.run(host='0.0.0.0', port=80)
|