12 lines
77 B
Go
12 lines
77 B
Go
package smtp
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Server interface {
|
|
Run()
|
|
|
|
io.Closer
|
|
}
|