hyfetch/hyfetch/py.py

14 lines
246 B
Python
Raw Normal View History

2024-12-22 06:19:24 -05:00
from . import main
from .color_util import printc
def run_py():
try:
main.run()
except KeyboardInterrupt:
printc('&cThe program is interrupted by ^C, exiting...')
exit(0)
if __name__ == '__main__':
run_py()