mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-12 18:11:34 +08:00
23 lines
312 B
Go
23 lines
312 B
Go
package api_doc
|
|
|
|
import "time"
|
|
|
|
type UpdateDoc struct {
|
|
ID string
|
|
Service 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"`
|
|
}
|