Skip to content

Commit

Permalink
Merge pull request #1 from BGR360/setup
Browse files Browse the repository at this point in the history
Some initial setup
  • Loading branch information
BGR360 committed Oct 18, 2019
2 parents 2058390 + 9cbd558 commit 4d4e024
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -1,3 +1,7 @@
.DS_Store

#### AUTO-GENERATED ####

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
Empty file added app/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions app/app.py
@@ -0,0 +1,3 @@
class SelfUpdatingApp():
def run(self):
print('Hello world!')
6 changes: 6 additions & 0 deletions app/main.py
@@ -0,0 +1,6 @@
from app.app import SelfUpdatingApp

self_updating_app = SelfUpdatingApp()

if __name__ == '__main__':
self_updating_app.run()

0 comments on commit 4d4e024

Please sign in to comment.