Compare commits
No commits in common. "90aba43e1e5f80a22333e6913392620a8f14fc41" and "02113d6d4b265133b1b561f82a0d55ff483fbaac" have entirely different histories.
90aba43e1e
...
02113d6d4b
|
|
@ -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"
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
class Application:
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def run(self):
|
||||
pass
|
||||
|
||||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue