aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/rs/xid/error.go
diff options
context:
space:
mode:
authorLibravatar Rutger Broekhoff2024-01-02 18:56:31 +0100
committerLibravatar Rutger Broekhoff2024-01-02 18:56:31 +0100
commit8db41da676ac8368ef7c2549d56239a5ff5eedde (patch)
tree09c427fd66de2ec1ebffc8342f5fdbb84b0701b5 /vendor/github.com/rs/xid/error.go
parentd4f75fb6db22e57577867445a022227e70958931 (diff)
downloadgitolfs3-8db41da676ac8368ef7c2549d56239a5ff5eedde.tar.gz
gitolfs3-8db41da676ac8368ef7c2549d56239a5ff5eedde.zip
Delete vendor directory
Diffstat (limited to 'vendor/github.com/rs/xid/error.go')
-rw-r--r--vendor/github.com/rs/xid/error.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/github.com/rs/xid/error.go b/vendor/github.com/rs/xid/error.go
deleted file mode 100644
index ea25374..0000000
--- a/vendor/github.com/rs/xid/error.go
+++ /dev/null
@@ -1,11 +0,0 @@
1package xid
2
3const (
4 // ErrInvalidID is returned when trying to unmarshal an invalid ID.
5 ErrInvalidID strErr = "xid: invalid ID"
6)
7
8// strErr allows declaring errors as constants.
9type strErr string
10
11func (err strErr) Error() string { return string(err) }