This commit is contained in:
2024-08-19 13:54:46 +02:00
parent 7548c9a304
commit c2369cca8a
8 changed files with 60 additions and 14 deletions

6
configuration/app.go Normal file
View File

@ -0,0 +1,6 @@
package configuration
var (
RunHTTP = true
RunGRPC = true
)

8
configuration/mail.go Normal file
View File

@ -0,0 +1,8 @@
package configuration
var (
SMTPHost = "smtp.example.com"
SMTPPort = 587
SMTPUser = "admin"
SMTPPass = "admin"
)