From 78280070aeaa7b87b837ddcceb898f8ef1ce00bd Mon Sep 17 00:00:00 2001 From: adnano Date: Tue, 13 Oct 2020 20:36:47 -0400 Subject: [PATCH] Add copyright notice --- server.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server.go b/server.go index ff805fa..c7f8630 100644 --- a/server.go +++ b/server.go @@ -383,6 +383,10 @@ func (f HandlerFunc) Serve(w *ResponseWriter, r *Request) { // The following code is modified from the net/http package. +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // ServeMux is a Gemini request multiplexer. // It matches the URL of each incoming request against a list of registered // patterns and calls the handler for the pattern that