mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 20:01:52 +03:00
7 lines
101 B
Python
7 lines
101 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class ApiKeyInfo(BaseModel):
|
||
|
key_id: str
|
||
|
creation_time: str
|