From 19958e1d169f83433a7712111331dbc66db1fb1b Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Sun, 29 Aug 2021 15:47:05 +0100 Subject: [PATCH] feat(*): Add using statements --- YouTubeChannelDownloader/Program.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/YouTubeChannelDownloader/Program.cs b/YouTubeChannelDownloader/Program.cs index b4b0bf1..95de25b 100644 --- a/YouTubeChannelDownloader/Program.cs +++ b/YouTubeChannelDownloader/Program.cs @@ -1,7 +1,17 @@ +using Creek.HelpfulExtensions; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; +using YouTubeChannelDownloader.Data; +using YouTubeChannelDownloader.Models; +using YouTubeChannelDownloader.Services; +using YoutubeExplode; +using YoutubeExplode.Common; +using YoutubeExplode.Converter; +using YoutubeExplode.Playlists; +using YoutubeExplode.Videos.Streams; +using YouTubeChannelDownloader.Utilities; using System.IO; namespace YouTubeChannelDownloader