mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
sqlx
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
from enum import Enum
|
||||
|
||||
class DeleteDraftKind(str, Enum):
|
||||
APP = "app"
|
||||
FLOW = "flow"
|
||||
SCRIPT = "script"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user