Update package path

This commit is contained in:
Tyler 2018-11-18 17:24:33 -05:00
parent 4c4c009f1a
commit 8ccd081957
3 changed files with 11 additions and 11 deletions

View File

@ -1,15 +1,15 @@
package cryptojs package cryptojs
import ( import (
"encoding/base64"
"crypto/md5"
"crypto/aes" "crypto/aes"
"crypto/cipher" "crypto/cipher"
"math/rand" "crypto/md5"
"encoding/base64"
"errors" "errors"
"math/rand"
"git.meow.tf/tyler/go-pastee/evpkdf"
"bytes" "bytes"
"paste.ee/go/evpkdf"
) )
const ( const (

View File

@ -1,8 +1,8 @@
package cryptojs package cryptojs
import ( import (
"fmt"
"bytes" "bytes"
"fmt"
) )
// Appends padding. // Appends padding.

View File

@ -1,16 +1,16 @@
package pastee package pastee
import ( import (
"net/http"
"io"
"encoding/json"
"bytes" "bytes"
"encoding/json"
"io"
"math/rand"
"net/http"
"net/url"
"strconv" "strconv"
"time" "time"
"net/url"
"math/rand"
"git.meow.tf/tyler/go-pastee/cryptojs" "paste.ee/go/cryptojs"
) )
func New(key string) *Pastee { func New(key string) *Pastee {