mirror of
https://gitee.com/johng/gf
synced 2026-07-07 06:15:15 +08:00
13 lines
132 B
Go
13 lines
132 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/frame/g"
|
|
)
|
|
|
|
func main() {
|
|
s := g.Server()
|
|
s.EnableAdmin()
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
}
|