feat: update shortcut redirector

This commit is contained in:
Steven
2023-02-26 00:27:54 +08:00
parent 6b3ff5e462
commit 700598d1a5
10 changed files with 69 additions and 117 deletions

View File

@ -1,18 +0,0 @@
package api
type ShortcutOrganizer struct {
ShortcutID int
UserID int
Pinned bool
}
type ShortcutOrganizerFind struct {
ShortcutID int
UserID int
}
type ShortcutOrganizerUpsert struct {
ShortcutID int
UserID int
Pinned bool `json:"pinned"`
}