Added DTO for Authorization header reading

This commit is contained in:
PB
2025-10-22 11:24:56 +02:00
parent acd224124e
commit 95217521f1

5
identity/dto/headers.go Normal file
View File

@@ -0,0 +1,5 @@
package identity
type AuthorizationHeaderDTO struct {
Authorization string `reqHeader:"authorization"`
}