diff --git a/src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts b/src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts index ffc0256..0cea588 100644 --- a/src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts +++ b/src/recipes/hanayama_huzzles/HanayamaHuzzlesRecipe.ts @@ -4,9 +4,9 @@ import { RegexFactory } from 'src/regex/RegexFactory'; import { WebsiteScraper } from 'src/scraping/WebsiteScraper'; import { TrackablesUpdater } from 'src/tracking/TrackablesUpdater'; import { Recipe } from '../Recipe'; -import { RecipeListUpdater } from '../RecipeListUpdater'; -import { RecipeMarkdownListUpdater } from '../RecipeMarkdownListUpdater'; -import { RecipeMarker } from '../RecipeMarker'; +import { RecipeListUpdater } from '../helpers/RecipeListUpdater'; +import { RecipeMarkdownListUpdater } from '../helpers/RecipeMarkdownListUpdater'; +import { RecipeMarker } from '../helpers/RecipeMarker'; import { HanayamaHuzzle } from './HanayamaHuzzle'; export class HanayamaHuzzlesRecipe implements Recipe { diff --git a/src/recipes/RecipeListUpdater.ts b/src/recipes/helpers/RecipeListUpdater.ts similarity index 100% rename from src/recipes/RecipeListUpdater.ts rename to src/recipes/helpers/RecipeListUpdater.ts diff --git a/src/recipes/RecipeMarkdownListExtractor.ts b/src/recipes/helpers/RecipeMarkdownListExtractor.ts similarity index 100% rename from src/recipes/RecipeMarkdownListExtractor.ts rename to src/recipes/helpers/RecipeMarkdownListExtractor.ts diff --git a/src/recipes/RecipeMarkdownListUpdater.ts b/src/recipes/helpers/RecipeMarkdownListUpdater.ts similarity index 100% rename from src/recipes/RecipeMarkdownListUpdater.ts rename to src/recipes/helpers/RecipeMarkdownListUpdater.ts diff --git a/src/recipes/RecipeMarker.ts b/src/recipes/helpers/RecipeMarker.ts similarity index 100% rename from src/recipes/RecipeMarker.ts rename to src/recipes/helpers/RecipeMarker.ts diff --git a/src/recipes/iq_puzzles/IQPuzzlesRecipe.ts b/src/recipes/iq_puzzles/IQPuzzlesRecipe.ts index ef170f1..d5f1704 100644 --- a/src/recipes/iq_puzzles/IQPuzzlesRecipe.ts +++ b/src/recipes/iq_puzzles/IQPuzzlesRecipe.ts @@ -4,9 +4,9 @@ import { RegexFactory } from 'src/regex/RegexFactory'; import { WebsiteScraper } from 'src/scraping/WebsiteScraper'; import { TrackablesUpdater } from 'src/tracking/TrackablesUpdater'; import { Recipe } from '../Recipe'; -import { RecipeListUpdater } from '../RecipeListUpdater'; -import { RecipeMarkdownListUpdater } from '../RecipeMarkdownListUpdater'; -import { RecipeMarker } from '../RecipeMarker'; +import { RecipeListUpdater } from '../helpers/RecipeListUpdater'; +import { RecipeMarkdownListUpdater } from '../helpers/RecipeMarkdownListUpdater'; +import { RecipeMarker } from '../helpers/RecipeMarker'; import { IQPuzzle } from './IQPuzzle'; export class IQPuzzlesRecipe implements Recipe {