cArdamomo
Cardamomo is a simple framework for
Google GO programming language that
help developers to build GO backend
more faster.

Example:

  
    package main

    import (
      "github.com/zombcode/cardamomo"
    )

    func main() {
      c := cardamomo.Instance("8000")

      c.Get("/", func(req cardamomo.Request, res cardamomo.Response) {
        res.Send("Hello world!");
      })

      c.Run()
    }