staging #2

Open
GHMiranda wants to merge 3 commits from staging into master
2 changed files with 10 additions and 1 deletions
Showing only changes of commit 90aba43e1e - Show all commits

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()