Files
GoMFT/internal/web/handlers/admin_handlers.go
T
2025-03-07 23:21:12 -08:00

13 lines
286 B
Go

package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
// HandleBackupDB handles the POST /admin/backup route
func (h *Handlers) HandleBackupDB(c *gin.Context) {
// TODO: Implement database backup
c.JSON(http.StatusOK, gin.H{"message": "Database backup initiated"})
}