Fixed google code broken dependencies

This commit is contained in:
silenteh 2016-01-26 14:43:56 +01:00
parent 72d6bbdae0
commit cf42e4da7c
2 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ go:
- 1.4 - 1.4
install: install:
- go get "code.google.com/p/rsc/qr" - go get "github.com/sec51/rsc/qr"
- go get "github.com/sec51/cryptoengine" - go get "github.com/sec51/cryptoengine"
script: script:
- go test -v ./... - go test -v ./...

View File

@ -2,7 +2,6 @@ package twofactor
import ( import (
"bytes" "bytes"
"code.google.com/p/rsc/qr"
"crypto" "crypto"
"crypto/hmac" "crypto/hmac"
"crypto/rand" "crypto/rand"
@ -15,6 +14,7 @@ import (
"fmt" "fmt"
"github.com/sec51/convert/smallendian" "github.com/sec51/convert/smallendian"
"github.com/sec51/cryptoengine" "github.com/sec51/cryptoengine"
"github.com/sec51/rsc/qr"
"hash" "hash"
"io" "io"
"net/url" "net/url"