We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d99e303 commit b72b592Copy full SHA for b72b592
cmd/bbolt/command_get.go
@@ -9,7 +9,7 @@ import (
9
bolt "go.etcd.io/bbolt"
10
)
11
12
-func newGetCommand(m *Main) *cobra.Command {
+func newGetCommand() *cobra.Command {
13
var parseFormat, format string
14
15
cmd := &cobra.Command{
cmd/bbolt/command_root.go
@@ -22,7 +22,7 @@ func NewRootCommand() *cobra.Command {
22
newInspectCommand(),
23
newCheckCommand(),
24
newBucketsCommand(),
25
- newGetCommand(nil), // TODO: Replace nil with an actual *Main instance if available
+ newGetCommand(),
26
27
28
return rootCmd
0 commit comments