fix: json field case
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
张泊明518370910136 2024-04-03 18:08:34 -04:00
parent 8f3804543a
commit 0bf349c032
GPG Key ID: D47306D7062CDA9D

View File

@ -159,11 +159,11 @@ type Stage struct {
}
type ParserResult struct {
Score int
Comment string
Score int `json:"score"`
Comment string `json:"comment"`
}
type StageResult struct {
Name string
Results []ParserResult
Name string `json:"name"`
Results []ParserResult `json:"results"`
}