diff options
| author | Adnan Maolood <[email protected]> | 2021-02-24 19:00:09 -0500 |
|---|---|---|
| committer | Adnan Maolood <[email protected]> | 2021-02-24 19:00:09 -0500 |
| commit | 1764e02d1e057139f00a5483a4a2ffa47c9a3079 (patch) | |
| tree | 94870524cd00fdad3033149378f22a7ae666da8c /examples | |
| parent | response: Revert to using fields instead of methods (diff) | |
| download | go-gemini-1764e02d1e057139f00a5483a4a2ffa47c9a3079.tar.xz go-gemini-1764e02d1e057139f00a5483a4a2ffa47c9a3079.zip | |
Remove ResponseWriter.Close method
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/server.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/server.go b/examples/server.go index 29d5bf1..23bb953 100644 --- a/examples/server.go +++ b/examples/server.go @@ -102,7 +102,3 @@ func (w *logResponseWriter) WriteHeader(status gemini.Status, meta string) { func (w *logResponseWriter) Flush() error { return nil } - -func (w *logResponseWriter) Close() error { - return nil -} |