This action will force synchronization from John/gf, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
English | 简体中文
GF(GoFrame)
is a modular, full-featured and production-ready application development framework of golang. Providing a series of core components and dozens of practical modules, such as: memcache, configure, validator, logging, array/queue/set/map containers, timer/timing tasks, file/memory lock, object pool, database ORM, etc. Supporting web server integrated with router, cookie, session, middleware, logger, template, https, hooks, rewrites and many more features.
go get -u -v github.com/gogf/gf
suggested using go.mod
:
require github.com/gogf/gf latest
golang version >= 1.11
package main
import (
"github.com/gogf/gf/frame/g"
"github.com/gogf/gf/net/ghttp"
)
func main() {
s := g.Server()
s.BindHandler("/", func(r *ghttp.Request) {
r.Response.Write("Hello World")
})
s.Run()
}
GF
is licensed under the MIT License, 100% free and open-source, forever.
We currently accept donation by Alipay/WechatPay, please note your github/gitee account in your payment bill. If you like GF
, why not buy developer a cup of coffee?
Sign in for post a comment
Comments ( 0 )