Files
user-system/internal/api/handler/avatar_handler.go

20 lines
395 B
Go
Raw Normal View History

package handler
import (
"net/http"
"github.com/gin-gonic/gin"
)
// AvatarHandler handles avatar upload requests
type AvatarHandler struct{}
// NewAvatarHandler creates a new AvatarHandler
func NewAvatarHandler() *AvatarHandler {
return &AvatarHandler{}
}
func (h *AvatarHandler) UploadAvatar(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"message": "avatar upload not implemented"})
}