all repos

onasty @ e0dc5bbe238138421c8062e0ab89c57fa6d333bf

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(string) (string, error)
}