package structs // swagger:model LogBody type LogBody struct { Type string Logs []string } type GetLogParams struct { Type string } // /log/grouptasks?d=2021-08-01&f=i type GetLogQuery struct { D string // date F string // filter }