From 689519feac20f81a0c6b7f409fdec1fbf90a7881 Mon Sep 17 00:00:00 2001 From: Maximilian Haack Date: Fri, 6 Sep 2013 11:27:43 +0100 Subject: [PATCH] Fix the `gorilla/mux` import gorilla moved to GitHub (https://github.com/gorilla) --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index 20ffc35..4b7164c 100644 --- a/server.go +++ b/server.go @@ -1,9 +1,9 @@ package main import ( - "code.google.com/p/gorilla/mux" "encoding/base64" "fmt" + "github.com/gorilla/mux" "io/ioutil" "net" "net/http"