Initial Commit

This commit is contained in:
Casey 2024-07-01 10:14:04 +03:00
commit 5dc2fc5881
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
3 changed files with 9 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.py[cow]
__pycache__/
venv/

View File

@ -0,0 +1,5 @@
def main():
print('Hi!')
if __name__ == '__main__':
main()

1
requirements.txt Normal file
View File

@ -0,0 +1 @@