Added migrations

This commit is contained in:
KamilM1205 2025-09-20 18:16:26 +04:00
parent 4a16acc87e
commit 5b18009658
34 changed files with 929 additions and 154 deletions

View file

@ -0,0 +1,7 @@
package requests
type PutPostRequest struct {
Title string `json:"title"`
Description string `json:"description"`
Content string `json:"content"`
}