package services type PasswordHasher interface { Hash(password string) (string, error) Compare(hashedPassword, password string) error }