make string actually random

This commit is contained in:
Derek McQuay 2016-08-23 11:11:25 -07:00
parent fe437a1dcc
commit e63fee56dc
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,9 @@ import (
"io"
"io/ioutil"
"log"
"math/rand"
"net/http"
"strconv"
"time"
"github.com/gorilla/sessions"
@ -25,7 +27,7 @@ var (
Scopes: []string{"https://www.googleapis.com/auth/userinfo.email"},
Endpoint: google.Endpoint,
}
oauthStateString = "thisshouldberandom"
oauthStateString = strconv.Itoa(rand.Int())
)
var Version string = "dev"