refactor: rename to FileStatusResponse

This commit is contained in:
Derrick Hammer 2023-06-15 00:25:38 -04:00
parent ce1b5e31d5
commit 30ad92fb8d
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ func (f *FilesController) GetStatusBy(cidString string) {
break
}
f.respondJSON(&response.StatusResponse{Status: statusCode})
f.respondJSON(&response.FileStatusResponse{Status: statusCode})
}

View File

@ -1,5 +1,5 @@
package response
type StatusResponse struct {
type FileStatusResponse struct {
Status string `json:"status"`
}