add import to main.go (strconv)

This commit is contained in:
Dawid Wysokiński 2020-12-22 18:23:46 +01:00
parent 1b8fce636d
commit 5aae1ca92f
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import (
"net/http"
"os"
"os/signal"
"strconv"
"strings"
"time"
@ -205,4 +206,4 @@ func mustParseEnvToInt(key string) int {
return 0
}
return i
}
}