MCPcopy Create free account
hub / github.com/dbunt1tled/python-fast-api / create

Method create

src/app/user/service/user_service.py:19–20  ·  view source on GitHub ↗
(self, data: dict[str, Any] | User)

Source from the content-addressed store, hash-verified

17 return await self.user_repository.find_by_id(uid=uid)
18
19 async def create(self, data: dict[str, Any] | User) -> User:
20 return await self.user_repository.create(data=data)
21
22 async def update(self, uid: int, data: dict[str, Any]) -> User:
23 return await self.user_repository.update(uid=uid, data=data)

Callers 1

signupMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected