slpkg/bin/slpkg_new-configs
2023-04-26 08:22:45 +03:00

10 lines
189 B
Python
Executable file

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