feat(workflow_service): workflow version control api. (#14860)

Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
-LAN- 2025-03-10 13:34:31 +08:00 committed by GitHub
commit 3254018ddb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 1732 additions and 885 deletions

View file

@ -0,0 +1,10 @@
class WorkflowInUseError(ValueError):
"""Raised when attempting to delete a workflow that's in use by an app"""
pass
class DraftWorkflowDeletionError(ValueError):
"""Raised when attempting to delete a draft workflow"""
pass