Starting to improve the project structure

This commit is contained in:
2025-05-17 18:43:54 +03:30
parent cb5149b7bc
commit ab9254fcad
11 changed files with 874 additions and 16 deletions

View File

@@ -0,0 +1,5 @@
package requestmodels
type ApproveMediaInput struct {
MediaId string `json:"mediaId" binding:"required"`
}

View File

@@ -0,0 +1,5 @@
package requestmodels
type LoginInput struct {
Password string `json:"password" binding:"required"`
}

View File

@@ -0,0 +1,5 @@
package requestmodels
type RejectMediaInput struct {
MediaId string `json:"mediaId" binding:"required"`
}