You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
745 B
Go
30 lines
745 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
addr := flag.String("addr", ":4000", "HTTP network address")
|
|
flag.Parse()
|
|
infoLog := log.New(os.Stdout, "INFO\t", log.Ldate|log.Ltime)
|
|
errorLog := log.New(os.Stderr, "ERROR\t", log.Ldate|log.Ltime|log.Lshortfile)
|
|
mux := http.NewServeMux()
|
|
fileServer := http.FileServer(http.Dir("./ui/static/"))
|
|
mux.Handle("/static/", http.StripPrefix("/static", fileServer))
|
|
mux.HandleFunc("/", home)
|
|
mux.HandleFunc("/snippet/view", snippetView)
|
|
mux.HandleFunc("/snippet/create", snippetCreate)
|
|
srv := &http.Server{
|
|
Addr: *addr,
|
|
ErrorLog: errorLog,
|
|
Handler: mux,
|
|
}
|
|
infoLog.Printf("Starting server on %s", *addr)
|
|
err := srv.ListenAndServe()
|
|
errorLog.Fatal(err)
|
|
}
|