Skip to content

Commit faa5e59

Browse files
committed
Update import paths to use my repo
1 parent c4c4d6d commit faa5e59

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

rfc3164/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package rfc3164_test
22

33
import (
44
"fmt"
5-
"github.com/jeromer/syslogparser/rfc3164"
5+
"github.com/Xiol/syslogparser/rfc3164"
66
)
77

88
func ExampleNewParser() {

rfc3164/rfc3164.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package rfc3164
22

33
import (
44
"bytes"
5-
"github.com/jeromer/syslogparser"
5+
"github.com/Xiol/syslogparser"
66
"time"
77
)
88

rfc3164/rfc3164_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package rfc3164
22

33
import (
44
"bytes"
5-
"github.com/jeromer/syslogparser"
6-
. "launchpad.net/gocheck"
5+
"github.com/Xiol/syslogparser"
6+
. "gopkg.in/check.v1"
77
"testing"
88
"time"
99
)

rfc5424/example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package rfc5424_test
22

33
import (
44
"fmt"
5-
"github.com/jeromer/syslogparser/rfc5424"
5+
"github.com/Xiol/syslogparser/rfc5424"
66
)
77

88
func ExampleNewParser() {

rfc5424/rfc5424.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package rfc5424
55

66
import (
77
"fmt"
8-
"github.com/jeromer/syslogparser"
8+
"github.com/Xiol/syslogparser"
99
"math"
1010
"strconv"
1111
"time"

rfc5424/rfc5424_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package rfc5424
22

33
import (
44
"fmt"
5-
"github.com/jeromer/syslogparser"
6-
. "launchpad.net/gocheck"
5+
"github.com/Xiol/syslogparser"
6+
. "gopkg.in/check.v1"
77
"testing"
88
"time"
99
)

syslogparser_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package syslogparser
22

33
import (
4-
. "launchpad.net/gocheck"
4+
. "gopkg.in/check.v1"
55
"testing"
66
)
77

0 commit comments

Comments
 (0)