18 lines
501 B
TypeScript
18 lines
501 B
TypeScript
import { Result } from '@/lib/contracts/Result';
|
|
import type { Service } from '@/lib/contracts/services/Service';
|
|
|
|
/**
|
|
* Livery Service
|
|
*
|
|
* Currently not implemented - returns NotImplemented errors for all endpoints.
|
|
*/
|
|
export class LiveryService implements Service {
|
|
async getLiveries(): Promise<Result<void, 'NOT_IMPLEMENTED'>> {
|
|
return Result.err('NOT_IMPLEMENTED');
|
|
}
|
|
|
|
async uploadLivery(): Promise<Result<void, 'NOT_IMPLEMENTED'>> {
|
|
return Result.err('NOT_IMPLEMENTED');
|
|
}
|
|
}
|