13 lines
204 B
Go
13 lines
204 B
Go
package blog
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func InitHttpHandlers() {
|
|
prefix := "/blog/"
|
|
http.HandleFunc(fmt.Sprint(prefix, "{$}"), blogTop)
|
|
http.HandleFunc(fmt.Sprint(prefix, "{slug}/"), showPost)
|
|
}
|