Introduce `Application` class and reorganize module structure

This commit is contained in:
Gustavo Henrique Santos Souza de Miranda 2025-10-29 00:52:27 -03:00
parent d8e9efd73a
commit 7a75126708
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,5 @@
from metar_navigate.application import Application
from metar_navigate.command import main
__all__ = ["Application", "main"]

View File

@ -0,0 +1,7 @@
class Application:
def __init__(self):
pass
def run(self):
pass

View File

@ -1,2 +1,5 @@
from metar_navigate import Application
def main():
app = Application()
print("Hello World")