mirror of
https://github.com/rjNemo/go-wiki
synced 2026-06-06 10:46:40 +00:00
13 lines
187 B
Go
13 lines
187 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/rjNemo/go-wiki/controllers"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf("Start Go-wiki server at %s\n", time.Now())
|
|
controllers.RegisteredRoutes()
|
|
}
|