Remove fmt package

This commit is contained in:
Steven Polley 2020-04-04 18:39:26 -06:00
parent 53cd28e816
commit 8319643753
1 changed files with 1 additions and 2 deletions

View File

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