Compare commits

..

No commits in common. "2dbc2740432dd752c42ff6cec59921cb2f2f1abf" and "d31926a0031dd969a49a0614241656ed9267694a" have entirely different histories.

View File

@ -1,6 +1,7 @@
package main
import (
"fmt"
"log"
"net/http"
"os"
@ -18,5 +19,5 @@ func main() {
log.Println("started public fileserver on 8080")
<-stop
log.Println("Shutting server down...")
fmt.Println("Shutting server down...")
}