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
import (
"encoding/base64"
"crypto/md5"
"crypto/aes"
"crypto/cipher"
"math/rand"
"crypto/md5"
"encoding/base64"
"errors"
"math/rand"
"git.meow.tf/tyler/go-pastee/evpkdf"
"bytes"
"paste.ee/go/evpkdf"
)
const (

View File

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

View File

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