Compare commits

...

2 Commits

Author SHA1 Message Date
645597b54e Update repo url 2025-12-13 16:30:11 +01:00
c49fde3d15 changed req params source 2025-11-16 17:44:23 +01:00
2 changed files with 4 additions and 3 deletions

2
go.mod
View File

@@ -1,4 +1,4 @@
module git.ego.freeddns.org/egommerce/api-entities module git.pbiernat.space/egommerce/api-entities
go 1.24 go 1.24

View File

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