Created file structure

This commit is contained in:
StNicolay 2022-09-26 20:34:02 +03:00
parent 00c35baabe
commit 6cd1016249
7 changed files with 20 additions and 0 deletions

9
main.py Normal file
View File

@ -0,0 +1,9 @@
import src
def main() -> None:
src.main()
if __name__ == "__main__":
main()

1
requirements-dev.txt Normal file
View File

@ -0,0 +1 @@
black

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
bcrypt
cryptography
mariadb

7
src/__init__.py Normal file
View File

@ -0,0 +1,7 @@
from . import bot, cryptography, database
__all__ = ["bot", "cryptography", "database"]
def main() -> None:
...

0
src/bot/__init__.py Normal file
View File

View File

0
src/database/__init__.py Normal file
View File