Compare commits

..

2 Commits

Author SHA1 Message Date
c49fde3d15 changed req params source 2025-11-16 17:44:23 +01:00
cc2ba15c37 Added DTO for Access action 2025-11-15 19:59:04 +01:00

10
identity/dto/access.go Normal file
View File

@@ -0,0 +1,10 @@
package identity
type CheckAccessRequestDTO struct {
URL string `json:"url"`
Service string `json:"srv"`
}
type CheckAccessResponseDTO struct {
Status string `json:"status"`
}