Compare commits

...

3 Commits

Author SHA1 Message Date
c3c578a343 changed req params source 2025-11-16 17:39:57 +01:00
cc2ba15c37 Added DTO for Access action 2025-11-15 19:59:04 +01:00
86341c21e1 Added Setting entity 2025-11-15 13:30:25 +01:00
2 changed files with 10 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
package config
type Config struct {
type Setting struct {
ID string `db:"id" json:"id"`
Name string `db:"name" json:"name"`
Value string `db:"value" json:"value"`

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

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