Initial commit

This commit is contained in:
Ben Shiller 2021-04-11 21:31:01 -05:00
commit f08c6868d6
No known key found for this signature in database
GPG Key ID: DC46F01400846797
4 changed files with 19 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.pyc
__pycache__/
venv/

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# PP-RSS
## A Pluggable Python RSS Server

7
app/app.py Normal file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env python3
def main():
print("Dummy main")
if __name__ == "__main__":
main()

View File

@ -0,0 +1,7 @@
#!/usr/bin/env python3
def main():
print("Dummy main")
if __name__ == "__main__":
main()