Source code for tisserande.local_sync.execution

from macon.local_sync.base import SyncOperations

from .. import models
from ..db.execution import ExecutionTable
from ..local_async.execution import execution as execution_async


[docs] class ExecutionSyncOperations(SyncOperations[ExecutionTable, models.Execution, models.ExecutionCreate]): pass
[docs] execution = ExecutionSyncOperations(execution_async)