File tree Expand file tree Collapse file tree 4 files changed +22
-27
lines changed Expand file tree Collapse file tree 4 files changed +22
-27
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ go get -u github.com/godzillaframework/godzilla
1313``` golang
1414```
1515
16- - for more tutorials visit the [ docs] ( https://github.com/godzillaframework/godzilla/blob/master/docs/learnwebfr .md )
16+ - for more tutorials visit the [ docs] ( https://github.com/godzillaframework/godzilla/blob/master/docs/learngodzilla .md )
Original file line number Diff line number Diff line change 1+ # learn how to use godzilla:
2+
3+ - godzilla is webframework that runs on any devices
4+
5+ - basic restapi
6+ ``` golang
7+ package main
8+
9+ import " github.com/godzillaframework/godzilla"
10+
11+ func main () {
12+ gz := godzilla.New ()
13+
14+ gz.Get (" /index" , func (ctx godzilla.Context ) {
15+ ctx.SendString (" Hello EveryOne!!!" )
16+ })
17+
18+ gz.Start (" :9090" )
19+ }
20+
21+ ```
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments