Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 407 Bytes

README.md

File metadata and controls

32 lines (25 loc) · 407 Bytes

Welcome To Godzilla Framwork Website

Installation:

go get -u github.com/godzillaframework/godzilla

Supported Platforms:

  • macOS
  • Linux
  • Windows

Features:

  • Fast
  • Lightweight
  • Secure
  • Easy Peasy :)

Examples

  • basic api
func main() {
	gz := godzilla.New()

	gz.Get("/index", func(ctx godzilla.Context) {
		ctx.SendString("Hello EveryOne!!!")
	})

	gz.Start(":9090")
}