slpkg/bin/slpkg
Dimitris Zlatanidis 664d1528a9 Removed new-config
2023-04-26 08:10:17 +03:00

10 lines
182 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)