Skip to content

Commit

Permalink
Revert "rename package so I can import it."
Browse files Browse the repository at this point in the history
This reverts commit e404a08.
  • Loading branch information
viprerk committed Dec 16, 2022
1 parent e404a08 commit 62635cd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion example_mimetype_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

"github.com/splashing-atom/mimetype"
"github.com/gabriel-vasile/mimetype"
)

func Example_detect() {
Expand Down
2 changes: 1 addition & 1 deletion example_reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"io/ioutil"

"github.com/splashing-atom/mimetype"
"github.com/gabriel-vasile/mimetype"
)

// Pure io.Readers (meaning those without a Seek method) cannot be read twice.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/splashing-atom/mimetype
module github.com/gabriel-vasile/mimetype

go 1.12

Expand Down
4 changes: 2 additions & 2 deletions internal/magic/text.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"time"

"github.com/splashing-atom/mimetype/internal/charset"
"github.com/splashing-atom/mimetype/internal/json"
"github.com/gabriel-vasile/mimetype/internal/charset"
"github.com/gabriel-vasile/mimetype/internal/json"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions mime.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package mimetype
import (
"mime"

"github.com/splashing-atom/mimetype/internal/charset"
"github.com/splashing-atom/mimetype/internal/magic"
"github.com/gabriel-vasile/mimetype/internal/charset"
"github.com/gabriel-vasile/mimetype/internal/magic"
)

// MIME struct holds information about a file format: the string representation
Expand Down
2 changes: 1 addition & 1 deletion tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package mimetype
import (
"sync"

"github.com/splashing-atom/mimetype/internal/magic"
"github.com/gabriel-vasile/mimetype/internal/magic"
)

// mimetype stores the list of MIME types in a tree structure with
Expand Down

0 comments on commit 62635cd

Please sign in to comment.