diff --git a/passworder.go b/passworder.go deleted file mode 100644 index da9cb46..0000000 --- a/passworder.go +++ /dev/null @@ -1,11 +0,0 @@ -// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC -// SPDX-License-Identifier: Apache-2.0 - -package bascule - -// Passworder is an optional Token interface that provides access -// to any raw password contained within the token. -type Passworder interface { - // Password returns the password associated with this Token, if any. - Password() string -}