feat: roblox likes route

This commit is contained in:
trafficlunar 2025-06-28 14:12:32 +01:00
parent fea1c9ced9
commit a2a99a8dcc
7 changed files with 81 additions and 1 deletions

View file

@ -0,0 +1,12 @@
package handler
import (
"api/internal/worker"
"encoding/json"
"net/http"
)
func HandleGetGrowARobloxianLikesCount(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(worker.GrowARobloxianLikes)
}