mtlynch / logpaste

A simple web service for storing text log files

Home Page:https://logpaste.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Switch to native HTTP muxer

mtlynch opened this issue · comments

We're using the third-party gorilla mux package, but I don't think we really need it. We can probably get away with the standard library implementation.

Investigating more, the gorilla mux package is much better. Without it, we have to manually route the different HTTP verbs in an uglier way and write more code for extracting values from the URL path.