logger.go 191 B

12345678910
  1. package backends
  2. type loggerConfig struct {
  3. LogReceivedMails bool `json:"log_received_mails"`
  4. }
  5. // putting all the paces we need together
  6. type LoggerBackend struct {
  7. config dummyConfig
  8. }