mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 13:32:25 -05: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 | ||
|  | } |