ptr, ref and deref funcs response, use fmt.Fprint(f) validate, few new funcs
11 lines
234 B
Go
11 lines
234 B
Go
// Copyright 2024 Patial Tech (Ankit Patial).
|
|
//
|
|
// This file is part of code.patial.tech/go/appcore, which is MIT licensed.
|
|
// See http://opensource.org/licenses/MIT
|
|
|
|
package email
|
|
|
|
type Transport interface {
|
|
Send(*Message) error
|
|
}
|