Skip to content

Commit 244468d

Browse files
committed
Update import paths to use my syslogparser
1 parent 39d667f commit 244468d

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

format/automatic.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"errors"
77
"strconv"
88

9-
"github.com/jeromer/syslogparser"
10-
"github.com/jeromer/syslogparser/rfc3164"
11-
"github.com/jeromer/syslogparser/rfc5424"
9+
"github.com/Xiol/syslogparser"
10+
"github.com/Xiol/syslogparser/rfc3164"
11+
"github.com/Xiol/syslogparser/rfc5424"
1212
)
1313

1414
/* Selecting an 'Automatic' format detects incoming format (i.e. RFC3164 vs RFC5424) and Framing

format/format.go

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

6-
"github.com/jeromer/syslogparser"
6+
"github.com/Xiol/syslogparser"
77
)
88

99
type Format interface {

format/rfc3164.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package format
33
import (
44
"bufio"
55

6-
"github.com/jeromer/syslogparser"
7-
"github.com/jeromer/syslogparser/rfc3164"
6+
"github.com/Xiol/syslogparser"
7+
"github.com/Xiol/syslogparser/rfc3164"
88
)
99

1010
type RFC3164 struct{}

format/rfc5424.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package format
33
import (
44
"bufio"
55

6-
"github.com/jeromer/syslogparser"
7-
"github.com/jeromer/syslogparser/rfc5424"
6+
"github.com/Xiol/syslogparser"
7+
"github.com/Xiol/syslogparser/rfc5424"
88
)
99

1010
type RFC5424 struct{}

format/rfc6587.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"bytes"
66
"strconv"
77

8-
"github.com/jeromer/syslogparser"
9-
"github.com/jeromer/syslogparser/rfc5424"
8+
"github.com/Xiol/syslogparser"
9+
"github.com/Xiol/syslogparser/rfc5424"
1010
)
1111

1212
type RFC6587 struct{}

handler.go

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

33
import (
4-
"github.com/jeromer/syslogparser"
4+
"github.com/Xiol/syslogparser"
55
)
66

77
//The handler receive every syslog entry at Handle method

handler_test.go

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

33
import (
4-
"github.com/jeromer/syslogparser"
4+
"github.com/Xiol/syslogparser"
55
. "gopkg.in/check.v1"
66
)
77

server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"sync"
99
"time"
1010

11-
"gopkg.in/mcuadros/go-syslog.v2/format"
11+
"github.com/Xiol/go-syslog/format"
1212
)
1313

1414
var (

server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/jeromer/syslogparser"
10+
"github.com/Xiol/syslogparser"
1111
. "gopkg.in/check.v1"
1212
)
1313

0 commit comments

Comments
 (0)