229f5fcf18
Type: feature Signed-off-by: Filip Tehlar <ftehlar@cisco.com> Change-Id: I5a64a2c095cae3a4d5f8fdc73e624b010339ec8e
27 lines
391 B
Go
Executable File
27 lines
391 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) < 2 {
|
|
fmt.Println("arg expected")
|
|
os.Exit(1)
|
|
}
|
|
|
|
http.HandleFunc("/10M", func(w http.ResponseWriter, r *http.Request) {
|
|
file, _ := os.Open("10M")
|
|
defer file.Close()
|
|
io.Copy(w, file)
|
|
})
|
|
err := http.ListenAndServe(os.Args[1], nil)
|
|
if err != nil {
|
|
fmt.Printf("%v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|