logranger/go.mod
Winni Neessen cf17cc3419
Add initial server implementation with config loading and listener setup
This commit introduces the creation of the core server and its components: config loading mechanism, listener setup, and error handling. The provided configuration allows the server to run different types of listeners. Additionally, it includes robust log-level settings to facilitate debugging and operational transparency.
2023-12-14 12:09:01 +01:00

11 lines
238 B
Modula-2

module github.com/wneessen/logranger
go 1.21
require github.com/kkyr/fig v0.4.0
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
)