diff options
author | Teddy Wing | 2017-06-03 15:36:27 +0200 |
---|---|---|
committer | Teddy Wing | 2017-06-03 15:36:27 +0200 |
commit | e439f382fd4bfed4cb547ca59fc0d679658457d4 (patch) | |
tree | be4ddf6a012cbbaf6470e27d1a1e47986bab0e8e | |
parent | 10b741fb0c8e9c61647ea8ff977d6242fc86656e (diff) | |
download | timetasker-e439f382fd4bfed4cb547ca59fc0d679658457d4.tar.bz2 |
main.go;http.go: Remove commented unused imports
-rw-r--r-- | main.go | 2 | ||||
-rw-r--r-- | timetask/http.go | 3 |
2 files changed, 0 insertions, 5 deletions
@@ -1,10 +1,8 @@ package main import ( - // "fmt" "io/ioutil" "log" - // "os" "time" "github.com/teddywing/timetasker/timetask" diff --git a/timetask/http.go b/timetask/http.go index 8e7de70..6e73276 100644 --- a/timetask/http.go +++ b/timetask/http.go @@ -1,13 +1,10 @@ package timetask import ( - // "fmt" - // "log" "net/http" "net/http/cookiejar" "net/url" "strconv" - // "strings" "golang.org/x/net/publicsuffix" ) |