mirror of
https://github.com/1f349/lotus.git
synced 2024-11-09 22:52:53 +00:00
14 lines
255 B
Go
14 lines
255 B
Go
package main
|
|
|
|
import (
|
|
"github.com/1f349/lotus/imap"
|
|
"github.com/1f349/lotus/smtp"
|
|
)
|
|
|
|
type Conf struct {
|
|
Listen string `yaml:"listen"`
|
|
Audience string `yaml:"audience"`
|
|
Smtp *smtp.Smtp `yaml:"smtp"`
|
|
Imap *imap.Imap `yaml:"imap"`
|
|
}
|