From c1d14d5666a14e2473eb32d56c93c7e132c3d89b Mon Sep 17 00:00:00 2001 From: Roberto Ferro Date: Mon, 30 Aug 2021 16:47:07 +0200 Subject: [PATCH] Removed Mail struct from configuration --- CHANGELOG.md | 2 ++ kernel/config.go | 7 ------- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69b12d1..29483be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to the "Go-Web Framework" will be documented in this file. ## [Unreleased] +### Removed +- Removed Mail struct from configuration ## [v0.6-3-beta] - 2021-08-27 ### Fixed diff --git a/kernel/config.go b/kernel/config.go index 796efe1..31222cd 100644 --- a/kernel/config.go +++ b/kernel/config.go @@ -23,13 +23,6 @@ type Conf struct { App struct { Key string `yaml:"key"` } `yaml:"app"` - Mail struct { - From string `yaml:"from"` - Host string `yaml:"host"` - Username string `yaml:"username"` - Password string `yaml:"password"` - Port int `yaml:"port"` - } `yaml:"mail"` } // RetrieveRoutingConf will parse router.yml file (present in Go-Web root dir) and return a Router structure.