diff options
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index 12da665b..2e45b0c8 100644 --- a/config/config.go +++ b/config/config.go @@ -183,3 +183,11 @@ func contains(list []string, v string) bool { } return false } + +// warning message related to configuration (deprecation, etc.) +type Warning struct { + Title string + Body string +} + +var Warnings []Warning |