Created file structure
This commit is contained in:
parent
00c35baabe
commit
6cd1016249
9
main.py
Normal file
9
main.py
Normal file
@ -0,0 +1,9 @@
|
||||
import src
|
||||
|
||||
|
||||
def main() -> None:
|
||||
src.main()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
1
requirements-dev.txt
Normal file
1
requirements-dev.txt
Normal file
@ -0,0 +1 @@
|
||||
black
|
3
requirements.txt
Normal file
3
requirements.txt
Normal file
@ -0,0 +1,3 @@
|
||||
bcrypt
|
||||
cryptography
|
||||
mariadb
|
7
src/__init__.py
Normal file
7
src/__init__.py
Normal file
@ -0,0 +1,7 @@
|
||||
from . import bot, cryptography, database
|
||||
|
||||
__all__ = ["bot", "cryptography", "database"]
|
||||
|
||||
|
||||
def main() -> None:
|
||||
...
|
0
src/bot/__init__.py
Normal file
0
src/bot/__init__.py
Normal file
0
src/cryptography/__init__.py
Normal file
0
src/cryptography/__init__.py
Normal file
0
src/database/__init__.py
Normal file
0
src/database/__init__.py
Normal file
Reference in New Issue
Block a user