mirror of
https://github.com/wger-project/wger.git
synced 2026-02-18 00:17:51 +01:00
14 lines
278 B
Python
Executable File
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()
|