mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-02-05 00:15:51 +01:00
* Organize api files * Add more API definitions for events * Add export select by ID * Typing fixes * Update openapi spec * Change type * Fix test * Fix message * Fix tests
7 lines
102 B
Python
7 lines
102 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class GenericResponse(BaseModel):
|
|
success: bool
|
|
message: str
|