1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-04 17:10:19 +00:00

Merge branch 'develop' into patch-1

This commit is contained in:
Ondrej Fabry
2017-04-02 13:46:06 +02:00
committed by GitHub
55 changed files with 222 additions and 276 deletions

View File

@ -12,7 +12,6 @@ It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific feature
go get github.com/astaxie/beego
#### Create file `hello.go`
```go
package main
@ -22,10 +21,9 @@ func main(){
beego.Run()
}
```
#### Build and run
go build main.go
go build hello.go
./hello
#### Go to [http://localhost:8080](http://localhost:8080)