Signed-off-by: Artem Inzhyyants <artem.inzhyyants@gmail.com> Co-authored-by: Erick Corona <erick.corona@airbyte.io> Co-authored-by: Artem Inzhyyants <artem.inzhyyants@gmail.com>
12 lines
271 B
Python
12 lines
271 B
Python
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
def catalog_path():
|
|
return Path(__file__).resolve().parent.joinpath("resource/catalog/")
|
|
|
|
|
|
def config_path():
|
|
return Path(__file__).resolve().parent.joinpath("resource/config/")
|