hello.go 151 B

12345678910
  1. package hello
  2. import (
  3. "github.com/gogf/gf/net/ghttp"
  4. )
  5. // Hello World
  6. func Handler(r *ghttp.Request) {
  7. r.Response.Writeln("Hello World!")
  8. }