Compare commits

..

No commits in common. "development" and "master" have entirely different histories.

3 changed files with 2 additions and 11 deletions

View File

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

View File

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

View File

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