From c8e1cb275f8e5e193f442277a401ea5adb61e332 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Fri, 1 Jul 2022 03:27:14 +0400 Subject: [PATCH] Added Delete field to Log substruct to Configuration struct. --- internal/configuration/configuration.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/configuration/configuration.go b/internal/configuration/configuration.go index 8925df4..4957101 100644 --- a/internal/configuration/configuration.go +++ b/internal/configuration/configuration.go @@ -19,6 +19,7 @@ type Configuration struct { Error string `yaml:"error"` Upload string `yaml:"upload"` Download string `yaml:"download"` + Delete string `yaml:"delete"` Clean string `yaml:"clean"` CleanError string `yaml:"clean_error"` } `yaml:"log"`