switched to gorilla, added out of the box handlers for logging, proxy headers, and recovery

This commit is contained in:
Łukasz Budnik
2021-02-03 09:08:31 +01:00
parent b013a03c8f
commit cd90e887fe
5 changed files with 57 additions and 11 deletions

8
go.mod Normal file
View File

@@ -0,0 +1,8 @@
module github.com/lukaszbudnik/yosoy
go 1.15
require (
github.com/gorilla/handlers v1.5.1
github.com/gorilla/mux v1.8.0
)