move html and json io managers

This commit is contained in:
2025-08-03 21:30:12 +02:00
parent 5392aceb26
commit 03f9979943
3 changed files with 6 additions and 2 deletions

View File

@@ -3,8 +3,8 @@ import jobs
import sensors
from dagster_polars import PolarsParquetIOManager
from icecream import install
from resources import HtmlIOManager
from shared.config import APP, STORAGE_DIR
from shared.io_manager.html import HtmlIOManager
import dagster as dg
from dagster import load_assets_from_modules

View File

@@ -2,8 +2,8 @@ import assets
import sensors
from dagster_polars import PolarsParquetIOManager
from icecream import install
from resources import JsonIOManager
from shared.config import APP, STORAGE_DIR
from shared.io_manager import JsonIOManager
import dagster as dg

View File

@@ -0,0 +1,4 @@
from shared.io_manager.html import HtmlIOManager
from shared.io_manager.json import JsonIOManager
__all__ = [HtmlIOManager, JsonIOManager]