mirror of
https://github.com/volatiletech/authboss.git
synced 2025-07-07 00:55:37 +02:00
6 lines
84 B
Go
6 lines
84 B
Go
package authboss
|
|
|
|
type Hasher interface {
|
|
GenerateHash(s string) (string, error)
|
|
}
|