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 c0b6f99 commit 4c15e83Copy full SHA for 4c15e83
groups.go
@@ -2,6 +2,15 @@ package main
2
3
import "strings"
4
5
+const (
6
+ localDevice = "local"
7
+ networkDevice = "network"
8
+ fuseDevice = "fuse"
9
+ specialDevice = "special"
10
+ loopsDevice = "loops"
11
+ bindsMount = "binds"
12
+)
13
+
14
type FilterOptions struct {
15
HiddenDevices map[string]struct{}
16
OnlyDevices map[string]struct{}
main.go
@@ -12,15 +12,6 @@ import (
"golang.org/x/crypto/ssh/terminal"
)
-const (
- localDevice = "local"
17
- networkDevice = "network"
18
- fuseDevice = "fuse"
19
- specialDevice = "special"
20
- loopsDevice = "loops"
21
- bindsMount = "binds"
22
-)
23
-
24
var (
25
Version = ""
26
CommitSHA = ""
0 commit comments