9 lines
127 B
Python
9 lines
127 B
Python
from __future__ import annotations
|
|
|
|
from . import main
|
|
|
|
__version__ = main.VERSION
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main.run()
|