v0.3.0 security and edge case improvement all around

This commit is contained in:
2026-07-18 08:48:48 -04:00
parent aafa680a35
commit 74434a0c75
15 changed files with 350 additions and 200 deletions
+2 -2
View File
@@ -1,4 +1,3 @@
// FILE: auth/http_test.go
package auth
import (
@@ -51,4 +50,5 @@ func TestHTTPAuthParsing(t *testing.T) {
_, err = ParseBearerToken("Bearer ")
assert.Error(t, err)
assert.Equal(t, ErrAuthEmptyBearerToken, err)
}
}