aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/main.go b/main.go
index 99adb7c..3b000c7 100644
--- a/main.go
+++ b/main.go
@@ -4,12 +4,10 @@ import (
"errors"
"fmt"
"log"
- "math/rand"
"net/http"
"os"
"path/filepath"
"strings"
- "time"
"bloat/config"
"bloat/kv"
@@ -23,10 +21,6 @@ var (
configFile = "/etc/bloat.conf"
)
-func init() {
- rand.Seed(time.Now().Unix())
-}
-
func errExit(err error) {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)