summaryrefslogtreecommitdiffstats
path: root/firefly_cli/commands/category.py
blob: d4bad93be05b1b9162329f11260d016ac3a1c2f2 (plain)
1
2
3
4
5
6
7
8
# Copyright (C) 2026 Danilo M. <danix@danix.xyz>  GPL-2.0-only
from firefly_cli import registry, output

@registry.command("category list", help="list all categories known to Firefly")
def cmd_list(args, ctx):
    resp = ctx.client.request("GET", "/api/v1/categories")
    output.emit(output.unwrap(resp), human=ctx.human)
    return 0