13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
/**
|
|
* Landing Service - DTO Only
|
|
*
|
|
* Returns raw API DTOs. No ViewModels or UX logic.
|
|
* All client-side presentation logic must be handled by hooks/components.
|
|
*/
|
|
export class LandingService {
|
|
constructor(private readonly apiClient: any) {}
|
|
|
|
async getLandingData(): Promise<any> {
|
|
return { featuredLeagues: [], stats: {} };
|
|
}
|
|
} |