Skip to content

Instantly share code, notes, and snippets.

@bennAH
bennAH / mux_handlers.go
Created October 18, 2015 21:36
gorilla mux - multiple handlers
package main
import (
"fmt"
"github.com/gorilla/mux"
"net/http"
)
func main() {
r := mux.NewRouter()
@bennAH
bennAH / build.gradle
Created September 28, 2016 01:03
netty-json
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '1.0'
jar {
manifest {
attributes 'Implementation-Title': 'Protocol Base',
'Implementation-Version': version