backend/mem: cleanup not found error message

This commit is contained in:
Michael Eischer 2024-04-14 11:43:18 +02:00
parent 7ba5e95a82
commit 35277b7797
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import (
"bytes"
"context"
"encoding/base64"
"fmt"
"hash"
"io"
"net/http"
@ -41,7 +42,7 @@ func NewFactory() location.Factory {
)
}
var errNotFound = errors.New("not found")
var errNotFound = fmt.Errorf("not found")
const connectionCount = 2