import { BaseExpedition } from './Base'

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