Skip to content

Commit

Permalink
fix(api-client): stub token model
Browse files Browse the repository at this point in the history
First generated model from CryoSPARC. Other models will come later
  • Loading branch information
nfrasser committed Dec 16, 2024
1 parent 31d09aa commit 5e29028
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Empty file added cryosparc/models/__init__.py
Empty file.
8 changes: 8 additions & 0 deletions cryosparc/models/auth.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5e29028

Please sign in to comment.