Files
wger/start.py
2013-04-10 09:11:30 +02:00

14 lines
278 B
Python
Executable File

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