aboutsummaryrefslogtreecommitdiff
path: root/pkg/components/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/components/errors.go')
-rw-r--r--pkg/components/errors.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/components/errors.go b/pkg/components/errors.go
new file mode 100644
index 0000000..aedbe88
--- /dev/null
+++ b/pkg/components/errors.go
@@ -0,0 +1,8 @@
+package components
+
+import "errors"
+
+var (
+ NotFound = errors.New("Not found")
+ InvlidaInput = errors.New("Invalid Input")
+)