mirror of https://github.com/go-sonic/sonic.git
7 lines
126 B
Go
7 lines
126 B
Go
2 years ago
|
package service
|
||
|
|
||
|
type OneTimeTokenService interface {
|
||
|
Get(oneTimeToken string) (string, bool)
|
||
|
Create(value string) string
|
||
|
}
|