From cc2ba15c37201c6cb0668c5d5ace39195b04a305 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Sat, 15 Nov 2025 19:59:04 +0100 Subject: [PATCH] Added DTO for Access action --- identity/dto/access.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 identity/dto/access.go diff --git a/identity/dto/access.go b/identity/dto/access.go new file mode 100644 index 0000000..55c3baa --- /dev/null +++ b/identity/dto/access.go @@ -0,0 +1,9 @@ +package identity + +type CheckAccessRequestDTO struct { + URL string `query:"url"` + Service string `query:"srv"` +} + +type CheckAccessResponseDTO struct { +}