commit 2eac07fa968ebf80b2fd3292046dd8ef6bcda851
parent 44fbef30b39bcde3cd159c4261c9a0dd86c0c667
Author: Sean Enck <sean@ttypty.com>
Date: Thu, 18 Aug 2022 18:41:18 -0400
package headers
Diffstat:
22 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/cmd/lb-gitdiff/main.go b/cmd/lb-gitdiff/main.go
@@ -1,3 +1,4 @@
+// lockbox support for git+diff operations.
package main
import (
diff --git a/cmd/lb-rekey/main.go b/cmd/lb-rekey/main.go
@@ -1,3 +1,4 @@
+// rekey an entire lockbox.
package main
import (
diff --git a/cmd/lb-rw/main.go b/cmd/lb-rw/main.go
@@ -1,3 +1,4 @@
+// perform a read/write against a specific lockbox object.
package main
import (
diff --git a/cmd/lb-totp/main.go b/cmd/lb-totp/main.go
@@ -1,3 +1,4 @@
+// support TOTP tokens in lockbox.
package main
import (
diff --git a/cmd/lb/main.go b/cmd/lb/main.go
@@ -1,3 +1,4 @@
+// provides the binary runs or calls lockbox commands.
package main
import (
diff --git a/internal/cli/args.go b/internal/cli/args.go
@@ -1,3 +1,4 @@
+// Package cli handles simplistic CLI handler for flags.
package cli
type (
diff --git a/internal/colors/core.go b/internal/colors/core.go
@@ -1,3 +1,4 @@
+// Package colors manages definitions within lockbox for colorization.
package colors
const (
diff --git a/internal/colors/terminal.go b/internal/colors/terminal.go
@@ -1,3 +1,4 @@
+// Package colors handles terminal handling for lockbox.
package colors
import (
diff --git a/internal/dump/export.go b/internal/dump/export.go
@@ -1,3 +1,4 @@
+// Package dump handles export lockbox definitions to other formats.
package dump
import (
diff --git a/internal/encrypt/core.go b/internal/encrypt/core.go
@@ -1,3 +1,4 @@
+// Package encrypt handles encryption/decryption.
package encrypt
import (
diff --git a/internal/hooks/execute.go b/internal/hooks/execute.go
@@ -1,3 +1,4 @@
+// Package hooks handles executing lockbox hooks.
package hooks
import (
diff --git a/internal/inputs/env.go b/internal/inputs/env.go
@@ -1,3 +1,4 @@
+// Package inputs handles user inputs/UI elements.
package inputs
import (
diff --git a/internal/inputs/stdin.go b/internal/inputs/stdin.go
@@ -1,3 +1,4 @@
+// Package inputs handles stdin management/access.
package inputs
import (
diff --git a/internal/misc/errors.go b/internal/misc/errors.go
@@ -1,3 +1,4 @@
+// Package misc handles error logging/handling for UI outputs.
package misc
import (
diff --git a/internal/misc/os.go b/internal/misc/os.go
@@ -1,3 +1,4 @@
+// Package misc handles os operations.
package misc
import (
diff --git a/internal/platform/clipboard.go b/internal/platform/clipboard.go
@@ -1,3 +1,4 @@
+// Package platform handles platform-specific operations around clipboards.
package platform
import (
diff --git a/internal/platform/core.go b/internal/platform/core.go
@@ -1,3 +1,4 @@
+// Package platform handles platform-specific operations.
package platform
import (
diff --git a/internal/store/filesystem.go b/internal/store/filesystem.go
@@ -1,3 +1,4 @@
+// Package store handles filesystem operations for a lockbox store.
package store
import (
diff --git a/internal/subcommands/clear.go b/internal/subcommands/clear.go
@@ -1,3 +1,4 @@
+// Package subcommands handles clearing the clipboard.
package subcommands
import (
diff --git a/internal/subcommands/display.go b/internal/subcommands/display.go
@@ -1,3 +1,4 @@
+// Package subcommands handles displaying various lockbox structures to the UI.
package subcommands
import (
diff --git a/internal/subcommands/libexec.go b/internal/subcommands/libexec.go
@@ -1,3 +1,4 @@
+// Package subcommands handles calling library commands.
package subcommands
import (
diff --git a/internal/subcommands/listfind.go b/internal/subcommands/listfind.go
@@ -1,3 +1,4 @@
+// Package subcommands handles listing items from the lockbox store.
package subcommands
import (