mirror of
https://github.com/gotoeasy/glogcenter.git
synced 2025-09-15 12:58:34 +08:00
11 lines
116 B
Go
11 lines
116 B
Go
package main
|
|
|
|
import (
|
|
"glc/gweb/http"
|
|
"glc/web/router"
|
|
)
|
|
|
|
func main() {
|
|
http.StartHttpServer(router.Register)
|
|
}
|