Compare commits

...

2 Commits

Author SHA1 Message Date
2dbc274043 Merge branch 'master' of https://deadbeef.codes/steven/deadbeef.codes-publicfileserver
All checks were successful
continuous-integration/drone/push Build is passing
2020-04-11 13:16:54 -06:00
8319643753 Remove fmt package 2020-04-04 18:39:26 -06:00

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...")
}