Skip to content

Commit fe34cc1

Browse files
committed
chore: run formatter
1 parent ba19b1d commit fe34cc1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

cmd/age-plugin-fido2-hmac/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"flag"
55
"fmt"
66
"github.com/keys-pub/go-libfido2"
7-
"github.com/olastor/age-plugin-fido2-hmac/pkg/plugin"
87
"github.com/olastor/age-plugin-controller/pkg/controller"
8+
"github.com/olastor/age-plugin-fido2-hmac/pkg/plugin"
99
"os"
1010
"strings"
1111
)

pkg/plugin/identity_v1.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55
"errors"
66
"filippo.io/age"
77
"fmt"
8+
"github.com/keys-pub/go-libfido2"
9+
"github.com/olastor/age-plugin-controller/pkg/controller"
810
"os"
911
"sort"
1012
"strings"
11-
"github.com/keys-pub/go-libfido2"
12-
"github.com/olastor/age-plugin-controller/pkg/controller"
1313
)
1414

1515
func IdentityV1() error {

pkg/plugin/plugin.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ import (
55
"encoding/base64"
66
"encoding/binary"
77
"errors"
8+
"filippo.io/age"
89
"fmt"
10+
"github.com/olastor/age-plugin-controller/pkg/controller"
11+
"github.com/olastor/age-plugin-fido2-hmac/internal/bech32"
12+
"github.com/olastor/age-plugin-fido2-hmac/internal/mlock"
913
"golang.org/x/crypto/chacha20poly1305"
1014
"golang.org/x/term"
1115
"os"
1216
"slices"
1317
"strings"
14-
"filippo.io/age"
15-
"github.com/olastor/age-plugin-fido2-hmac/internal/bech32"
16-
"github.com/olastor/age-plugin-fido2-hmac/internal/mlock"
17-
"github.com/olastor/age-plugin-controller/pkg/controller"
1818
)
1919

2020
var b64 = base64.RawStdEncoding.Strict()

pkg/plugin/recipient_v1.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package plugin
33
import (
44
"bufio"
55
"fmt"
6-
"os"
76
"github.com/olastor/age-plugin-controller/pkg/controller"
7+
"os"
88
)
99

1010
func RecipientV1() error {

0 commit comments

Comments
 (0)