Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 320 Bytes

File metadata and controls

18 lines (15 loc) · 320 Bytes

Bigo is a web framework base on martini and macaron for quick start web develop

Copy the config.json to your workdir and create main.go:

package main

import (
	"github.com/fym201/bigo"
)

func main() {
	m := bigo.Classic()
	m.Get("/", func() string {
		return "Hello world!"
	})
	m.Run()
}