UNPKG

node-cta

Version:

A node wrapper for the CTA's (Chicago Transit Authority) bus and train tracker APIs

9 lines (8 loc) 223 B
import BusApi from './api/bus'; import TrainApi from './api/bus'; export default class CTA { constructor(busKey, trainKey) { this.busApi = new BusApi(busKey); this.trainApi = new TrainApi(trainKey); } }