Files
APIPark/service/api-doc/model.go
T
2024-09-25 20:28:01 +08:00

22 lines
296 B
Go

package api_doc
import "time"
type UpdateDoc struct {
ID string
Content string
}
type Doc struct {
Id string
Service string
Content string
Updater string
UpdateAt time.Time
}
type DocCommit struct {
Content string `json:"content"`
APICount int64 `json:"api_count"`
}