Skip to content
/ geneva Public

Geneva is a simple Gin-like web framework written in Golang.

License

Notifications You must be signed in to change notification settings

demouth/geneva

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Geneva Web Framework

Go

Geneva is a simple Gin-like web framework written in Golang.

Running Geneva

package main

import (
	"net/http"

	"github.com/demouth/geneva"
)

func main() {
	r := geneva.New()
	v1 := r.Group("/v1")
	v1.GET("/ping", func(c *geneva.Context) {
		c.JSON(http.StatusOK, geneva.H{
			"message": "pong",
		})
	})
	r.Run("127.0.0.1:8080")
}

About

Geneva is a simple Gin-like web framework written in Golang.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages