GO API Server

This is go rewrite of my backend for my sites where I have all my api ends points for web interactions. Python version
Endpoints
/encrypted_resume
All this endpoint does is return my resume that has been encrypted with users uploaded public key.
/git/user
Returns my Github API profile
/git/repos
Returns my Github API repos
/git/repos/list
Returns an array of my repos with the name and URL of them
/misc/gravatar
Return a hash for a Gravatar from an email.
Request Format:
{"email": "example@example.com"}
Response Format:
{"hash": "<Gravatar ID Hash>"}
/mics/string
Returns lower, upper or title case string.
Request Format:
{"string": "String Here", "modification": "lower|upper|title"}
Response Format:
{"string": "String here"}