summaryrefslogtreecommitdiffstats
path: root/internal/config/errors.go
diff options
context:
space:
mode:
authors <[email protected]>2025-11-03 21:17:12 -0500
committers <[email protected]>2025-11-03 21:17:12 -0500
commitf7fcfa623e670dc533bb378912829c73a3593e63 (patch)
tree910119ff7293b407affa9ff34706d627d77a3a04 /internal/config/errors.go
downloaddborg-f7fcfa623e670dc533bb378912829c73a3593e63.tar.gz
dborg-f7fcfa623e670dc533bb378912829c73a3593e63.zip
hi
Diffstat (limited to 'internal/config/errors.go')
-rw-r--r--internal/config/errors.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/config/errors.go b/internal/config/errors.go
new file mode 100644
index 0000000..4fd3636
--- /dev/null
+++ b/internal/config/errors.go
@@ -0,0 +1,7 @@
+package config
+
+import "errors"
+
+var (
+ ErrMissingAPIKey = errors.New("API key required: set DBORG_API_KEY environment variable or use --api-key flag")
+)