reformat
1 file changed, 3 insertions(+), 1 deletion(-)
changed files
M routes/routes.go → routes/routes.go
@@ -85,7 +85,9 @@ } func (d *deps) FileContent(rc *atreugo.RequestCtx) error { var raw bool - if rawParam, err := strconv.ParseBool(string(rc.Request.URI().QueryArgs().Peek("raw"))); err == nil { + if rawParam, err := strconv.ParseBool( + string(rc.Request.URI().QueryArgs().Peek("raw")), + ); err == nil { raw = rawParam }