aboutsummaryrefslogtreecommitdiff
path: root/content/post/2013-10-07-golang-http-handlers-as-middleware.markdown
diff options
context:
space:
mode:
authorJulio Capote <jcapote@gmail.com>2018-11-06 03:11:17 +0000
committerJulio Capote <jcapote@gmail.com>2018-11-06 03:11:17 +0000
commitae6d26f322c990bdae1d0a170fca4345d38cdf73 (patch)
treeaa7e9e9a96acc6c163b2f5ab17a1b72538a4e9d3 /content/post/2013-10-07-golang-http-handlers-as-middleware.markdown
parent3566649aab8e9c1b57f37c8915db0091dbee8a10 (diff)
downloadcapotej.com-ae6d26f322c990bdae1d0a170fca4345d38cdf73.tar.gz
fix tags
Diffstat (limited to 'content/post/2013-10-07-golang-http-handlers-as-middleware.markdown')
-rw-r--r--content/post/2013-10-07-golang-http-handlers-as-middleware.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/post/2013-10-07-golang-http-handlers-as-middleware.markdown b/content/post/2013-10-07-golang-http-handlers-as-middleware.markdown
index c1249e9..812632c 100644
--- a/content/post/2013-10-07-golang-http-handlers-as-middleware.markdown
+++ b/content/post/2013-10-07-golang-http-handlers-as-middleware.markdown
@@ -3,7 +3,7 @@ layout: post
title: "Golang http handlers as middleware"
date: 2013-10-07T08:52:00Z
comments: true
-categories: ["go", "http"]
+tags: ["go", "http"]
---
Most modern web stacks allow the "filtering" of requests via stackable/composable middleware, allowing you to cleanly separate cross-cutting concerns from your web application. This weekend I needed to hook into go's ```http.FileServer``` and was pleasantly surprised how easy it was to do.