16 lines
316 B
Go
16 lines
316 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
http.HandleFunc("/", indexHandler)
|
||
|
http.HandleFunc("/search", searchHandler)
|
||
|
http.HandleFunc("/install", installHandler) // for AMO add-on installs
|
||
|
|
||
|
log.Println("Starting server on http://localhost:8080")
|
||
|
log.Fatal(http.ListenAndServe(":8080", nil))
|
||
|
}
|