From f8176a30d5193f77fd7a76492f8245620035ffb7 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Thu, 10 Dec 2015 16:40:18 +0100 Subject: Move signer back into place of use --- account.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'account.go') diff --git a/account.go b/account.go index c0f76a1..85092de 100644 --- a/account.go +++ b/account.go @@ -48,11 +48,6 @@ func LoadAccount(email string) (*Account, error) { return nil, nil } -// Signer describes a signing interface -type Signer interface { - Sign([]byte, jose.NonceSource) ([]byte, error) -} - func (a *Account) Sign(msg []byte, n jose.NonceSource) ([]byte, error) { if a.signer == nil { var err error -- cgit v1.2.3