Convert local to a WeatherProvider

This commit is contained in:
Matthew Oslan
2019-05-21 22:49:49 -04:00
parent bcd006acf3
commit 4ffeed5999
4 changed files with 24 additions and 39 deletions

View File

@@ -5,7 +5,7 @@ import * as express from "express";
import * as cors from "cors";
import * as weather from "./routes/weather";
import * as local from "./routes/local";
import * as local from "./routes/weatherProviders/local";
let host = process.env.HOST || "127.0.0.1",
port = parseInt( process.env.PORT ) || 3000;