import { BaseExpedition } from './Base'

export class RCLLogistics extends BaseExpedition {
  public constructor() {
    super('rcl')
    throw new Error('not yet implemented')
  }
}