logranger/go.mod
Winni Neessen 43b1147106
Implement network connection handling
Introduced a new Connection struct and related functions in `connection.go` to facilitate network connections. Incorporated the `go-parsesyslog` package to parse incoming network data. Implemented functions in `server.go` to accept and handle incoming network connections, bolstering the application's network interaction functionality.
2023-12-22 01:44:50 +01:00

18 lines
385 B
Modula-2

// SPDX-FileCopyrightText: 2023 Winni Neessen <wn@neessen.dev>
//
// SPDX-License-Identifier: MIT
module github.com/wneessen/logranger
go 1.21
require (
github.com/kkyr/fig v0.4.0
github.com/wneessen/go-parsesyslog v0.2.1
)
require (
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)