diff --git a/cryosparc/models/__init__.py b/cryosparc/models/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/cryosparc/models/auth.py b/cryosparc/models/auth.py new file mode 100644 index 00000000..aa91e66b --- /dev/null +++ b/cryosparc/models/auth.py @@ -0,0 +1,8 @@ +# THIS FILE IS AUTO-GENERATED, DO NOT EDIT DIRECTLY +# SEE dev/api_generate_models.py +from pydantic import BaseModel + + +class Token(BaseModel): + access_token: str + token_type: str