Compare commits

...

2 Commits

Author SHA1 Message Date
Gustavo Henrique Santos Souza de Miranda 90aba43e1e Add the ` Application ` class and integrate it into the CLI entry point 2025-09-03 11:12:32 -03:00
Gustavo Henrique Santos Souza de Miranda 131443b7c5 Update CLI entry point in `pyproject.toml` 2025-09-03 11:11:41 -03:00
3 changed files with 11 additions and 2 deletions

View File

@ -25,4 +25,4 @@ Homepage = "https://github.com/gmbrax/Pilgrim/"
Issues = "https://github.com/gmbrax/Pilgrim/issues"
[project.scripts]
pilgrim = "epstein.command:main"
epstein = "epstein.command:main"

View File

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

View File

@ -1,7 +1,9 @@
from epstein.application import *
from epstein.application import Application
def main():
print("hello world")
app = Application()
app.run()
if __name__ =="__main__":
main()