This commit is contained in:
2025-06-20 17:00:56 +08:00
parent e17648cb60
commit 1b55403cd6
13 changed files with 1266 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package handler
// Handler The handler receive every syslog entry at Handle method
type Handler interface {
Handle([]byte)
}