14 lines
280 B
Python
Executable File
14 lines
280 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.
|
|
"""
|
|
|
|
import openslides.main
|
|
|
|
if __name__ == "__main__":
|
|
openslides.main.main()
|