Skip to content

Commit

Permalink
Changed structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jabbahotep committed May 16, 2022
1 parent fe5b52f commit c68cdf2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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/gabriel-vasile/mimetype"
"github.com/Diggernaut/mimetype"
)

func Example_detect() {
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/gabriel-vasile/mimetype/internal/charset"
"github.com/gabriel-vasile/mimetype/internal/json"
"github.com/Diggernaut/mimetype/internal/charset"
"github.com/Diggernaut/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/gabriel-vasile/mimetype/internal/charset"
"github.com/gabriel-vasile/mimetype/internal/magic"
"github.com/Diggernaut/mimetype/internal/charset"
"github.com/Diggernaut/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/gabriel-vasile/mimetype/internal/magic"
"github.com/Diggernaut/mimetype/internal/magic"
)

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

0 comments on commit c68cdf2

Please sign in to comment.