Micropub endpoint for my blog
https://jlelse.blog/posts/hugo-micropub/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
405 B
20 lines
405 B
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
err := initConfig()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
log.Println("Starting micropub server...")
|
|
log.Println("Current time: " + time.Now().Format(time.RFC3339))
|
|
log.Println("Blog URL: " + BlogUrl)
|
|
http.HandleFunc("/micropub", HandleMicroPub)
|
|
http.HandleFunc("/media", HandleMedia)
|
|
log.Fatal(http.ListenAndServe(":5555", nil))
|
|
}
|