OpenSlides/start.py

14 lines
274 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Start script for OpenSlides.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from openslides.main import main
if __name__ == "__main__":
main()