chore: retire webhook state

This commit is contained in:
johnnyjoy
2025-01-10 22:24:12 +08:00
parent 2a861ea430
commit c1498a1844
9 changed files with 122 additions and 179 deletions

View File

@@ -9,7 +9,6 @@ type Webhook struct {
CreatedTs int64
UpdatedTs int64
CreatorID int32
RowStatus RowStatus
Name string
URL string
}
@@ -20,10 +19,9 @@ type FindWebhook struct {
}
type UpdateWebhook struct {
ID int32
RowStatus *RowStatus
Name *string
URL *string
ID int32
Name *string
URL *string
}
type DeleteWebhook struct {