mirror of
https://github.com/rjNemo/go-wiki
synced 2026-06-06 02:36:40 +00:00
13 lines
225 B
Go
13 lines
225 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/rjNemo/go-wiki/controller"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf("Start Go-wiki server on http://localhost:%d at %s\n", controller.Port, time.Now())
|
|
controller.RegisteredRoutes()
|
|
}
|