Files
blog-frontend/src/api/chess.ts
wypark ab585b5faa
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 2m29s
feat: add daily chess puzzle page
2026-05-29 00:18:05 +09:00

11 lines
311 B
TypeScript

import { http } from './http';
import { ApiResponse, ChessPuzzle } from '@/types';
export const getTodayChessPuzzle = async (timezone = 'Asia/Seoul') => {
const response = await http.get<ApiResponse<ChessPuzzle>>('/api/chess-puzzles/today', {
params: { timezone },
});
return response.data.data;
};