mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-06 19:29:15 +08:00
10 lines
202 B
Go
10 lines
202 B
Go
// Copyright (c) Mainflux
|
|||
// SPDX-License-Identifier: Apache-2.0
|
|||
|
|||
package users
|
|||
|
|||
// Emailer wrapper around the email
|
|||
type Emailer interface {
|
|||
SendPasswordReset(To []string, host, token string) error
|
|||
}
|