[feat] remove example user
This commit is contained in:
parent
776b513858
commit
539f019f39
6 changed files with 4 additions and 62 deletions
|
|
@ -2,7 +2,6 @@ from fastapi import Depends, Request
|
|||
|
||||
from adapter.di.container import AppContainer
|
||||
from usecase.sandbox import CreateSandbox
|
||||
from usecase.user import GetUser
|
||||
|
||||
APP_CONTAINER_STATE = 'container'
|
||||
APP_CONFIG_STATE = 'config'
|
||||
|
|
@ -15,10 +14,6 @@ def get_container(request: Request) -> AppContainer:
|
|||
return container
|
||||
|
||||
|
||||
def get_get_user(container: AppContainer = Depends(get_container)) -> GetUser:
|
||||
return container.usecases.get_user
|
||||
|
||||
|
||||
def get_create_sandbox(
|
||||
container: AppContainer = Depends(get_container),
|
||||
) -> CreateSandbox:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue