Compare commits

...

1 Commits

Author SHA1 Message Date
95217521f1 Added DTO for Authorization header reading 2025-10-22 11:24:56 +02:00

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

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