mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 05:22:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 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
 | |
| }
 |