Skip to content

guilhermebr/gowf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gowf

Go Web Framework

  • Go Web Framework created for learning purposes.
  • Based on Beego Web Framework tutorial.

Quick Start

============

package main

import (
	"github.com/guilhermebr/gowf"
)

type IndexView struct {
	gowf.Controller
}

func (self *IndexView) Get() {
	self.Ct.WriteString("Hello Gowf(ers)!")
}

func main() {
   app := gowf.NewApp()
   app.Route("/", &IndexView{})
   app.Run()
}

About

Go Web Framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages