website refactor
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
import { Result } from '@/lib/contracts/Result';
|
||||
import { DomainError } from '@/lib/contracts/services/Service';
|
||||
|
||||
/**
|
||||
* Landing Service - DTO Only
|
||||
*
|
||||
@@ -10,4 +13,8 @@ export class LandingService {
|
||||
async getLandingData(): Promise<any> {
|
||||
return { featuredLeagues: [], stats: {} };
|
||||
}
|
||||
|
||||
async signup(email: string): Promise<Result<void, DomainError>> {
|
||||
return Result.err({ type: 'notImplemented', message: 'Email signup endpoint' });
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user