Skip to content

roblesoft/oak

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Oak

Oak is a http web framework without third pary dependencies

Example

package main

import (
	"github.com/roblesoft/oak"
)

type Json struct {
	Body string
}

func main() {
	app := oak.New()

	app.GET("/hello_world", func(ctx *oak.Ctx) {
		ctx.JSON(&Json{Body: "Hello world"})
	})

	app.Run()
}

About

http framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages