We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e85181 commit 1e815b2Copy full SHA for 1e815b2
python/cocoindex/targets/__init__.py
@@ -0,0 +1,5 @@
1
+"""
2
+Targets supported by CocoIndex.
3
4
+
5
+from ._engine_builtin_specs import *
python/cocoindex/targets.py renamed to python/cocoindex/targets/_engine_builtin_specs.py
@@ -3,10 +3,10 @@
from dataclasses import dataclass
from typing import Sequence
6
-from . import op
7
-from . import index
8
-from .auth_registry import AuthEntryReference
9
-from .setting import DatabaseConnectionSpec
+from .. import op
+from .. import index
+from ..auth_registry import AuthEntryReference
+from ..setting import DatabaseConnectionSpec
10
11
12
class Postgres(op.TargetSpec):
0 commit comments