diff options
author | tjpcc <tjp@ctrl-c.club> | 2023-09-07 12:36:17 -0600 |
---|---|---|
committer | tjpcc <tjp@ctrl-c.club> | 2023-09-07 12:36:17 -0600 |
commit | 38ff3807b3b97da22006b5bdcf03fdfaaa4b0582 (patch) | |
tree | 2b66d01de970a14bbf6d9a29acb3a1499c82f9e7 /gopher/response.go | |
parent | 9330d8546fff5e0397b4eec1a24bf37277a6b745 (diff) |
all the gopher CGI handlers to support gophernicus behaviorsv1.3.0
Diffstat (limited to 'gopher/response.go')
-rw-r--r-- | gopher/response.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gopher/response.go b/gopher/response.go index 1ad7f1d..46f9db0 100644 --- a/gopher/response.go +++ b/gopher/response.go @@ -121,7 +121,7 @@ func Error(err error) *MapItem { // File builds a minimal response delivering a file's contents. // -// Meta is nil and Status is 0 in this response. +// Meta is nil in this response. func File(status types.Status, contents io.Reader) *types.Response { return &types.Response{Status: status, Body: contents} } |