diff options
author | Ethel Morgan <eth@ethulhu.co.uk> | 2020-07-07 18:22:39 +0100 |
---|---|---|
committer | Ethel Morgan <eth@ethulhu.co.uk> | 2020-07-07 18:22:39 +0100 |
commit | acbd480721aafbfc2c7dc923da4bc9f6db585ad0 (patch) | |
tree | 64a4c2ae456f0cab31da57e22d94b6c850f67a3c /handlers.go | |
parent | d569667ac12de341f730453b1b173901291f32da (diff) |
document NotFoundHandler
Diffstat (limited to '')
-rw-r--r-- | handlers.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/handlers.go b/handlers.go index 39151cd..099cb18 100644 --- a/handlers.go +++ b/handlers.go @@ -9,6 +9,7 @@ import ( ) var ( + // NotFoundHandler is a convenience to reduce boilerplate. NotFoundHandler = http.HandlerFunc(NotFound) ) |