howiieyu / ko

personal project for study, a web framework that reference to gin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ko

Personal Project. A web framework refer to Gin.

Get Started

package main

import (
	"net/http"
	"github.com/howiieyu/ko"
)

func main() {

	r := ko.Default()
	r.GET("/", func(c *ko.Context) {
		c.String(http.StatusOK, "Hello World\n")
	})

	r.Run(":8080")
}

About

personal project for study, a web framework that reference to gin

License:MIT License


Languages

Language:Go 100.0%