slpkg/bin/slpkg
2023-03-15 13:14:48 +02:00

12 lines
184 B
Python
Executable file

#!/usr/bin/python3
# -*- coding: utf-8 -*-
from slpkg.main import main
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
raise SystemExit(1)