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> { return Result.err('NOT_IMPLEMENTED'); } async uploadLivery(): Promise> { return Result.err('NOT_IMPLEMENTED'); } }