mirror of
ssh://git.janware.com/janware/proj/jw-pkg
synced 2026-04-25 17:45:55 +02:00
Register a bash-completion handler for jw-pkg.py, and mark it with PYTHON_ARGCOMPLETE_OK. Signed-off-by: Jan Lindemann <jan@janware.com>
7 lines
108 B
Python
7 lines
108 B
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
# PYTHON_ARGCOMPLETE_OK
|
|
|
|
from jw.pkg.App import App
|
|
|
|
App().run()
|