Added singleton config and changed module structure

This commit is contained in:
2023-11-23 22:13:10 +03:00
parent 6389c4f29e
commit 8c2d706401
12 changed files with 41 additions and 29 deletions

11
neuroapi/_neuroapi.py Normal file
View File

@@ -0,0 +1,11 @@
from ._methods.admin import Admin
from ._methods.image import Image
from ._methods.post import Post
from ._methods.user import User
class neuroapi:
post = Post()
admin = Admin()
user = User()
image = Image()