Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion env/env.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package env

import (
"github.com/Sirupsen/logrus"
"github.com/apcera/nats"
"github.com/dancannon/gorethink"
"github.com/lavab/logrus"

"github.com/lavab/api/cache"
"github.com/lavab/api/db"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"
"os"

"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"

"github.com/lavab/flag"
"github.com/zenazn/goji/graceful"
Expand Down
2 changes: 1 addition & 1 deletion routes/accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"time"

"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"
"github.com/zenazn/goji/web"

"github.com/lavab/api/env"
Expand Down
2 changes: 1 addition & 1 deletion routes/attachments.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package routes
import (
"net/http"

"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"
"github.com/zenazn/goji/web"

"github.com/lavab/api/env"
Expand Down
2 changes: 1 addition & 1 deletion routes/contacts.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package routes
import (
"net/http"

"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"
"github.com/zenazn/goji/web"

"github.com/lavab/api/env"
Expand Down
2 changes: 1 addition & 1 deletion routes/emails.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"strings"

"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"
"github.com/ugorji/go/codec"
"github.com/zenazn/goji/web"

Expand Down
2 changes: 1 addition & 1 deletion routes/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http"
"strings"

"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"
"github.com/zenazn/goji/web"
"golang.org/x/crypto/openpgp"
"golang.org/x/crypto/openpgp/armor"
Expand Down
2 changes: 1 addition & 1 deletion routes/labels.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package routes
import (
"net/http"

"github.com/Sirupsen/logrus"
"github.com/lavab/api/env"
"github.com/lavab/api/models"
"github.com/lavab/api/utils"
"github.com/lavab/logrus"
"github.com/zenazn/goji/web"
)

Expand Down
2 changes: 1 addition & 1 deletion routes/middleware.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"strings"

"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"
"github.com/zenazn/goji/web"

"github.com/lavab/api/env"
Expand Down
2 changes: 1 addition & 1 deletion routes/tokens.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"time"

"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"
"github.com/zenazn/goji/web"

"github.com/lavab/api/env"
Expand Down
2 changes: 1 addition & 1 deletion setup/loggly.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package setup

import (
"github.com/Sirupsen/logrus"
"github.com/lavab/logrus"
"github.com/segmentio/go-loggly"
)

Expand Down
2 changes: 1 addition & 1 deletion setup/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"sync"
"time"

"github.com/Sirupsen/logrus"
"github.com/apcera/nats"
"github.com/dancannon/gorethink"
"github.com/lavab/logrus"
"github.com/segmentio/go-loggly"
"github.com/zenazn/goji/web"
"github.com/zenazn/goji/web/middleware"
Expand Down
2 changes: 1 addition & 1 deletion utils/requests.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"net/http"
"strings"

"github.com/Sirupsen/logrus"
"github.com/gorilla/schema"
"github.com/lavab/logrus"

"github.com/lavab/api/env"
)
Expand Down