summaryrefslogtreecommitdiff
path: root/errors.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-14 00:49:35 -0500
committerJeff Carr <[email protected]>2025-10-14 00:49:35 -0500
commit96378c70293b7367f43e630a8d334c19f701b4db (patch)
tree8460d772f069a3e7e30e1bd29786ce23afa32e8e /errors.go
parentfc17dc394aedbc5fd636676202bad40c1f98c1de (diff)
make config.Set(key, value)v0.0.22
Diffstat (limited to 'errors.go')
-rw-r--r--errors.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/errors.go b/errors.go
new file mode 100644
index 0000000..807386d
--- /dev/null
+++ b/errors.go
@@ -0,0 +1,5 @@
+package config
+
+import "errors"
+
+var NotInitialized error = errors.New("your application config not initialized")