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
View File
@@ -0,0 +1,9 @@
import src
def main() -> None:
src.main()
if __name__ == "__main__":
main()
+1
View File
@@ -0,0 +1 @@
black
+3
View File
@@ -0,0 +1,3 @@
bcrypt
cryptography
mariadb
+7
View File
@@ -0,0 +1,7 @@
from . import bot, cryptography, database
__all__ = ["bot", "cryptography", "database"]
def main() -> None:
...
View File
View File
View File