mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-31 19:45:15 +02:00
9 lines
249 B
Python
9 lines
249 B
Python
"""``ManualTriggerParams`` — params for the ``manual`` trigger (empty in v1)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class ManualTriggerParams(BaseModel):
|
|
model_config = ConfigDict(extra="forbid")
|