all repos

onasty @ e8fd88d0e1e0471edc268a2e3cc3a4c00e89b6cb

a one-time notes service

onasty/internal/hasher/hasher.go(view raw)

1
2
3
4
5
6
package hasher

type Hasher interface {
	// Hash takes a string as input and returns its hash
	Hash(str string) (string, error)
}