Skip to content

Commit

Permalink
changed import names after repository name change
Browse files Browse the repository at this point in the history
  • Loading branch information
4kills committed Aug 11, 2020
1 parent 77a45e6 commit 0ca3974
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion checksum.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package libdeflate

import (
"github.com/4kills/libdeflate/native"
"github.com/4kills/go-libdeflate/native"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion compressor.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package libdeflate

import "github.com/4kills/libdeflate/native"
import "github.com/4kills/go-libdeflate/native"

// Compressor compresses data at the specified compression level.
//
Expand Down
2 changes: 1 addition & 1 deletion consts.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package libdeflate

import "github.com/4kills/libdeflate/native"
import "github.com/4kills/go-libdeflate/native"

// These constants specify several special compression levels
const (
Expand Down
2 changes: 1 addition & 1 deletion decompressor.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package libdeflate

import "github.com/4kills/libdeflate/native"
import "github.com/4kills/go-libdeflate/native"

// Decompressor decompresses any DEFLATE, zlib or gzip compressed data at any level
//
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
module github.com/4kills/go-libdeflate

go 1.13

require github.com/4kills/libdeflate v1.3.0
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github.com/4kills/libdeflate v1.3.0 h1:Js0AwFbGeZRkxjS5XKGhNjgT3tmPbFxxHK3DUMIryH0=
github.com/4kills/libdeflate v1.3.0/go.mod h1:OTVRJG3jgSXWd6jHbuZgUfmsZwWljxgD/aJk4hfpKVk=

0 comments on commit 0ca3974

Please sign in to comment.