Initial commit

This commit is contained in:
Casey 2023-08-23 23:51:00 +03:00
commit c342c141b3
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/

5
bta-proxy/__main__.py Normal file
View File

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

1
requirements.txt Normal file
View File

@ -0,0 +1 @@