things kinda work
This commit is contained in:
parent
c38ce5cfe6
commit
7eb697fecd
10 changed files with 342 additions and 29 deletions
|
|
@ -1,6 +1,10 @@
|
|||
import datetime
|
||||
import pathlib
|
||||
from dataclasses import dataclass
|
||||
|
||||
ASSUMED_PREHISTORICAL_DATETIME = datetime.datetime.fromtimestamp(0)
|
||||
DESTINATION_COLUMN_NAME = "documents"
|
||||
|
||||
|
||||
@dataclass
|
||||
class PATHS:
|
||||
|
|
@ -14,3 +18,7 @@ class PATHS:
|
|||
postgres_config_file_path: pathlib.Path = config_home_path / pathlib.Path(
|
||||
"postgres.yml"
|
||||
)
|
||||
streams_config_file_path: pathlib.Path = config_home_path / pathlib.Path(
|
||||
"streams.yml"
|
||||
)
|
||||
checkpoints_folder_path: pathlib.Path = config_home_path / "checkpoints/"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue