move html and json io managers
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
4
shared/src/shared/io_manager/__init__.py
Normal file
4
shared/src/shared/io_manager/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from shared.io_manager.html import HtmlIOManager
|
||||
from shared.io_manager.json import JsonIOManager
|
||||
|
||||
__all__ = [HtmlIOManager, JsonIOManager]
|
||||
Reference in New Issue
Block a user