Moving Pipe formatter to a subfolder

This commit is contained in:
moozzyk 2016-11-07 13:16:23 -08:00
parent f3dfb62af9
commit 81ddada76b
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace SocialWeather namespace SocialWeather.Pipe
{ {
public class PipeWeatherStreamFormatter : IStreamFormatter<WeatherReport> public class PipeWeatherStreamFormatter : IStreamFormatter<WeatherReport>
{ {

View File

@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using SocialWeather.Pipe;
using SocialWeather.Protobuf; using SocialWeather.Protobuf;
namespace SocialWeather namespace SocialWeather