Skip to content

anstick/zefir

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zefir - A Go micro web-framework

Inspired by Django Project

Installation

$ cd $GOPATH/src
$ git clone git@github.com:anstick/zefir.git github.com/anstick/zefir

A simple application example

package main

import (
	"github.com/anstick/zefir"
)

func main() {
	app := zefir.Create()

	router:= app.GetRouter()
	router.Get("index", "/$", func(context zefir.Context) {
		context.GetResponse().SetText("Hello world")
	})

	app.Start()
}

About

A Go micro web-framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages