Compare commits
No commits in common. "development" and "master" have entirely different histories.
developmen
...
master
|
|
@ -25,4 +25,4 @@ Homepage = "https://github.com/gmbrax/Pilgrim/"
|
||||||
Issues = "https://github.com/gmbrax/Pilgrim/issues"
|
Issues = "https://github.com/gmbrax/Pilgrim/issues"
|
||||||
|
|
||||||
[project.scripts]
|
[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():
|
def main():
|
||||||
print("hello world")
|
print("hello world")
|
||||||
app = Application()
|
|
||||||
app.run()
|
|
||||||
|
|
||||||
if __name__ =="__main__":
|
if __name__ =="__main__":
|
||||||
main()
|
main()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue