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 c4f9eee commit 5f025baCopy full SHA for 5f025ba
airbyte_cdk/cli/airbyte_cdk/_manifest.py
@@ -1,11 +1,19 @@
1
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
2
-"""Manifest related commands."""
+"""Manifest related commands.
3
+
4
+Coming soon.
5
6
+This module is planned to provide a command line interface (CLI) for validating
7
+Airbyte CDK manifests.
8
+"""
9
10
import click
11
12
13
@click.group(name="manifest")
-def manifest_cli_group() -> None:
14
+def manifest_cli_group(
15
+ help=__doc__,
16
+) -> None:
17
"""Manifest related commands."""
18
pass
19
0 commit comments