mirror of
https://github.com/Luzifer/vault-otp-ui.git
synced 2024-11-08 08:10:11 +00:00
Fix deprecated imports
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
048a2f0f8a
commit
9a2d3d5581
2 changed files with 3 additions and 3 deletions
4
main.go
4
main.go
|
@ -16,16 +16,16 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
log "github.com/Sirupsen/logrus"
|
||||
"github.com/gorilla/mux"
|
||||
"github.com/gorilla/securecookie"
|
||||
"github.com/gorilla/sessions"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"github.com/tdewolff/minify"
|
||||
"github.com/tdewolff/minify/html"
|
||||
"github.com/tdewolff/minify/js"
|
||||
validator "gopkg.in/validator.v2"
|
||||
|
||||
"github.com/Luzifer/rconfig"
|
||||
"github.com/Luzifer/rconfig/v2"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
2
token.go
2
token.go
|
@ -8,10 +8,10 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
log "github.com/Sirupsen/logrus"
|
||||
"github.com/hashicorp/vault/api"
|
||||
"github.com/pquerna/otp"
|
||||
"github.com/pquerna/otp/totp"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
type token struct {
|
||||
|
|
Loading…
Reference in a new issue