mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
685741efe0
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
12 lines
193 B
Python
Executable file
12 lines
193 B
Python
Executable file
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from slpkg.main import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
main()
|
|
except KeyboardInterrupt as err:
|
|
raise SystemExit(err)
|