feat: caching & logging

This commit is contained in:
Arkaprabha Chakraborty
2025-07-09 21:51:42 +05:30
parent a815b59cdc
commit 1a0330537a
12 changed files with 880 additions and 126 deletions

10
backend/models/video.go Normal file
View File

@@ -0,0 +1,10 @@
package models
type VideoDownloadRequest struct {
URL string `json:"url"`
Quality string `json:"quality"`
}
type ErrorResponse struct {
Error string `json:"error"`
}