diff options
| author | Levi Durfee <levi.durfee@gmail.com> | 2026-01-06 19:08:34 -0500 |
|---|---|---|
| committer | Levi Durfee <levi.durfee@gmail.com> | 2026-01-06 19:08:44 -0500 |
| commit | 35a6325ba12d0462bf01eb740fb6abde2d43c17a (patch) | |
| tree | e102dac429a78557ab4078d66bbd175d88b2d277 /cmd/goaes/commands/decrypt.go | |
| parent | 452911586df6115a7c8deadee87fe5d97a7fe36f (diff) | |
Add ability to encrypt files
Diffstat (limited to 'cmd/goaes/commands/decrypt.go')
| -rw-r--r-- | cmd/goaes/commands/decrypt.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/goaes/commands/decrypt.go b/cmd/goaes/commands/decrypt.go new file mode 100644 index 0000000..f89da22 --- /dev/null +++ b/cmd/goaes/commands/decrypt.go @@ -0,0 +1,12 @@ +package commands + +import ( + "context" + + "github.com/urfave/cli/v3" +) + +func Decrypt(ctx context.Context, cmd *cli.Command) error { + + return nil +} |
