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