mirror of
https://github.com/juanfont/headscale.git
synced 2026-03-17 23:14:01 +01:00
Errors should not start capitalised and they should not contain the word error or state that they "failed" as we already know it is an error Signed-off-by: Kristoffer Dalby <kristoffer@dalby.cc>
11 lines
141 B
Go
11 lines
141 B
Go
package util
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrCannotDecryptResponse = errors.New("decrypting response")
|
|
ZstdCompression = "zstd"
|
|
)
|