Skip to content

Commit 6ff958e

Browse files
committed
update: go.mod module
1 parent 79b1f91 commit 6ff958e

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io/ioutil"
66
"os"
77

8-
rotatelogs "github.com/lestrrat-go/file-rotatelogs"
8+
rotatelogs "github.com/flipped-aurora/file-rotatelogs"
99
)
1010

1111
func ExampleForceNewFile() {

go.mod

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
module github.com/lestrrat-go/file-rotatelogs
1+
module github.com/flipped-aurora/file-rotatelogs
22

33
go 1.12
44

55
require (
6-
github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 // indirect
7-
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
86
github.com/jonboulle/clockwork v0.4.0
9-
github.com/lestrrat-go/envload v0.0.0-20180220234015-a3eb8ddeffcc // indirect
107
github.com/lestrrat-go/strftime v1.0.6
118
github.com/pkg/errors v0.9.1
129
github.com/stretchr/testify v1.8.4
13-
github.com/tebeka/strftime v0.1.5 // indirect
1410
)

internal/fileutil/fileutil_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"testing"
66
"time"
77

8+
"github.com/flipped-aurora/file-rotatelogs/internal/fileutil"
89
"github.com/jonboulle/clockwork"
9-
"github.com/lestrrat-go/file-rotatelogs/internal/fileutil"
1010
"github.com/lestrrat-go/strftime"
1111
"github.com/stretchr/testify/assert"
1212
)

options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package rotatelogs
33
import (
44
"time"
55

6-
"github.com/lestrrat-go/file-rotatelogs/internal/option"
6+
"github.com/flipped-aurora/file-rotatelogs/internal/option"
77
)
88

99
const (

rotatelogs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"sync"
1515
"time"
1616

17-
"github.com/lestrrat-go/file-rotatelogs/internal/fileutil"
17+
"github.com/flipped-aurora/file-rotatelogs/internal/fileutil"
1818
strftime "github.com/lestrrat-go/strftime"
1919
"github.com/pkg/errors"
2020
)

rotatelogs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"testing"
1212
"time"
1313

14+
rotatelogs "github.com/flipped-aurora/file-rotatelogs"
1415
"github.com/jonboulle/clockwork"
15-
rotatelogs "github.com/lestrrat-go/file-rotatelogs"
1616
"github.com/pkg/errors"
1717
"github.com/stretchr/testify/assert"
1818
)

0 commit comments

Comments
 (0)