mirror of
https://github.com/usememos/memos.git
synced 2024-12-20 01:31:29 +03:00
e4a8a4d708
* feat: tag table * chore: update * chore: update
21 lines
226 B
Go
21 lines
226 B
Go
package api
|
|
|
|
type Tag struct {
|
|
Name string
|
|
CreatorID int
|
|
}
|
|
|
|
type TagUpsert struct {
|
|
Name string
|
|
CreatorID int
|
|
}
|
|
|
|
type TagFind struct {
|
|
CreatorID int
|
|
}
|
|
|
|
type TagDelete struct {
|
|
Name string
|
|
CreatorID int
|
|
}
|