mirror of
https://github.com/rclone/rclone.git
synced 2024-12-01 04:45:03 +01:00
20 lines
372 B
Go
20 lines
372 B
Go
|
//+build none
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"log"
|
||
|
"mime"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
mime.AddExtensionType(".wasm", "application/wasm")
|
||
|
mime.AddExtensionType(".js", "application/javascript")
|
||
|
mux := http.NewServeMux()
|
||
|
mux.Handle("/", http.FileServer(http.Dir(".")))
|
||
|
fmt.Printf("Serving on http://localhost:3000/\n")
|
||
|
log.Fatal(http.ListenAndServe(":3000", mux))
|
||
|
}
|