mirror of
https://github.com/hykilpikonna/hyfetch.git
synced 2026-04-12 11:56:01 -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()
|