mirror of
https://github.com/hykilpikonna/hyfetch.git
synced 2026-05-23 05:16:26 -05:00
10 lines
143 B
Python
10 lines
143 B
Python
from __future__ import annotations
|
|
|
|
from . import main, constants
|
|
|
|
__version__ = constants.VERSION
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main.run()
|