feat: tag table (#811)

* feat: tag table

* chore: update

* chore: update
This commit is contained in:
boojack
2022-12-21 19:22:32 +08:00
committed by GitHub
parent ab07c91d42
commit e4a8a4d708
4 changed files with 203 additions and 0 deletions

20
api/tag.go Normal file
View File

@@ -0,0 +1,20 @@
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
}