Files
crockery/internal/smtp/server.go

12 lines
77 B
Go
Raw Permalink Normal View History

2018-03-05 12:19:04 +00:00
package smtp
import (
"io"
)
type Server interface {
Run()
io.Closer
}