diff options
Diffstat (limited to 'cmd/fscrypt/flags.go')
| -rw-r--r-- | cmd/fscrypt/flags.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/fscrypt/flags.go b/cmd/fscrypt/flags.go index da3116f..16412bf 100644 --- a/cmd/fscrypt/flags.go +++ b/cmd/fscrypt/flags.go @@ -24,13 +24,14 @@ package main import ( "flag" "fmt" - "fscrypt/actions" "log" "regexp" "strconv" "time" "github.com/urfave/cli" + + "github.com/google/fscrypt/actions" ) // We define the types boolFlag, durationFlag, and stringFlag here instead of |