From 3ac1ee16f377d31a0fb80c8dae28b6239ac4229e Mon Sep 17 00:00:00 2001 From: Terin Stock Date: Sun, 9 Mar 2025 17:47:56 +0100 Subject: [chore] remove vendor --- vendor/gopkg.in/mcuadros/go-syslog.v2/README.md | 48 ------------------------- 1 file changed, 48 deletions(-) delete mode 100644 vendor/gopkg.in/mcuadros/go-syslog.v2/README.md (limited to 'vendor/gopkg.in/mcuadros/go-syslog.v2/README.md') diff --git a/vendor/gopkg.in/mcuadros/go-syslog.v2/README.md b/vendor/gopkg.in/mcuadros/go-syslog.v2/README.md deleted file mode 100644 index e17a0fae2..000000000 --- a/vendor/gopkg.in/mcuadros/go-syslog.v2/README.md +++ /dev/null @@ -1,48 +0,0 @@ -go-syslog [![Build Status](https://travis-ci.org/mcuadros/go-syslog.svg?branch=master)](https://travis-ci.org/mcuadros/go-syslog) [![GoDoc](http://godoc.org/github.com/mcuadros/go-syslog?status.svg)](hhttps://godoc.org/gopkg.in/mcuadros/go-syslog.v2) [![GitHub release](https://img.shields.io/github/release/mcuadros/go-syslog.svg)](https://github.com/mcuadros/go-syslog/releases) -============================== - -Syslog server library for go, build easy your custom syslog server over UDP, TCP or Unix sockets using RFC3164, RFC6587 or RFC5424 - -Installation ------------- - -The recommended way to install go-syslog - -``` -go get gopkg.in/mcuadros/go-syslog.v2 -``` - -Examples --------- - -How import the package - -```go -import "gopkg.in/mcuadros/go-syslog.v2" -``` - -Example of a basic syslog [UDP server](example/basic_udp.go): - -```go -channel := make(syslog.LogPartsChannel) -handler := syslog.NewChannelHandler(channel) - -server := syslog.NewServer() -server.SetFormat(syslog.RFC5424) -server.SetHandler(handler) -server.ListenUDP("0.0.0.0:514") -server.Boot() - -go func(channel syslog.LogPartsChannel) { - for logParts := range channel { - fmt.Println(logParts) - } -}(channel) - -server.Wait() -``` - -License -------- - -MIT, see [LICENSE](LICENSE) -- cgit v1.2.3