clan ui: move print into log.debug statements

This commit is contained in:
Johannes Kirschbauer
2024-05-20 19:59:50 +02:00
parent 8d77525664
commit 53548eb56e
5 changed files with 38 additions and 49 deletions

View File

@@ -1,13 +1,8 @@
from clan_cli import create_parser
from clan_cli.api import API
from clan_cli.api.schema_compat import to_json_schema
def main() -> None:
# Create the parser to register the API functions
create_parser()
schema = to_json_schema(API._registry)
schema = API.to_json_schema()
print(
f"""export const schema = {schema} as const;
"""