Implement drug refresh and view

This commit is contained in:
2024-01-15 15:29:33 +00:00
parent 37534b31bf
commit 0488a3e0b2
16 changed files with 842 additions and 31 deletions

View File

@@ -0,0 +1 @@
from core.lib.schemas import psychwiki_s # noqa

View File

@@ -0,0 +1,10 @@
from pydantic import BaseModel, Extra
class MyModel(BaseModel):
class Config:
extra = Extra.forbid
# class GetDrugsList(MyModel):
# ...