diff options
author | Wolfy-J <[email protected]> | 2020-10-26 21:02:56 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2020-10-26 21:02:56 +0300 |
commit | 2d3349eee632e7357ed1eb6905444194a28a4ec0 (patch) | |
tree | 74e15277ffe8c11a24e3d3b1a30edfd9597ef984 /plugins/logger/config.go | |
parent | 91cf918b30938129609323ded53e190385e019a6 (diff) |
- working on new cmd and logger setup
Diffstat (limited to 'plugins/logger/config.go')
-rw-r--r-- | plugins/logger/config.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/logger/config.go b/plugins/logger/config.go new file mode 100644 index 00000000..12badade --- /dev/null +++ b/plugins/logger/config.go @@ -0,0 +1,9 @@ +package logger + +type Config struct { + Squash bool + Channels map[string]LoggerConfig +} + +type LoggerConfig struct { +} |