1
0
mirror of https://github.com/volatiletech/authboss.git synced 2025-07-07 00:55:37 +02:00
Files
authboss/hasher.go
2023-10-28 20:57:02 +01:00

6 lines
84 B
Go

package authboss
type Hasher interface {
GenerateHash(s string) (string, error)
}