mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
18 lines
294 B
Go
18 lines
294 B
Go
|
package format
|
||
|
|
||
|
import (
|
||
|
"bufio"
|
||
|
|
||
|
"gopkg.in/mcuadros/go-syslog.v2/internal/syslogparser/rfc5424"
|
||
|
)
|
||
|
|
||
|
type RFC5424 struct{}
|
||
|
|
||
|
func (f *RFC5424) GetParser(line []byte) LogParser {
|
||
|
return &parserWrapper{rfc5424.NewParser(line)}
|
||
|
}
|
||
|
|
||
|
func (f *RFC5424) GetSplitFunc() bufio.SplitFunc {
|
||
|
return nil
|
||
|
}
|