Compare commits

...

2 Commits

Author SHA1 Message Date
Steven Polley 2dbc274043 Merge branch 'master' of https://deadbeef.codes/steven/deadbeef.codes-publicfileserver
continuous-integration/drone/push Build is passing Details
2020-04-11 13:16:54 -06:00
Steven Polley 8319643753 Remove fmt package 2020-04-04 18:39:26 -06:00
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...")
}