Normalize includes

This commit is contained in:
Las Zenow 2014-08-30 13:17:50 -05:00
parent 1a897cd1bd
commit 562bc157ee
17 changed files with 50 additions and 40 deletions

View file

@ -1,11 +1,12 @@
package database
import (
"strings"
"unicode"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"gopkgs.com/unidecode.v1"
"strings"
"unicode"
)
const (

View file

@ -1,12 +1,13 @@
package database
import log "github.com/cihub/seelog"
import (
log "github.com/cihub/seelog"
"errors"
"os"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"os"
)
const (

View file

@ -1,9 +1,10 @@
package database
import (
"time"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"time"
)
const (

View file

@ -1,9 +1,10 @@
package database
import (
"time"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
"time"
)
const (

View file

@ -1,12 +1,13 @@
package database
import log "github.com/cihub/seelog"
import (
log "github.com/cihub/seelog"
"bytes"
"code.google.com/p/go.crypto/scrypt"
"crypto/rand"
"errors"
"code.google.com/p/go.crypto/scrypt"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)