s/ListResponseModel/ModelResponse/

This commit is contained in:
Michael Yang
2023-08-30 11:10:27 -04:00
parent bc3e21fdc6
commit 0f541a0367
2 changed files with 4 additions and 4 deletions

View File

@@ -88,10 +88,10 @@ type PushRequest struct {
}
type ListResponse struct {
Models []ListResponseModel `json:"models"`
Models []ModelResponse `json:"models"`
}
type ListResponseModel struct {
type ModelResponse struct {
Name string `json:"name"`
ModifiedAt time.Time `json:"modified_at"`
Size int `json:"size"`