import { BaseExpedition } from './Base'

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