Files
Chromy/chromy/handlers/count_collection.py
T

10 lines
274 B
Python
Raw Normal View History

from __future__ import annotations
2026-04-21 17:42:37 +02:00
2026-04-22 15:47:46 +02:00
from chromy.chroma_functions import count_collection
from chromy.command_inputs import CountCollectionInput
2026-04-21 17:42:37 +02:00
def handle_count_collection(command: CountCollectionInput) -> int:
print(count_collection(command.collection))
2026-04-21 17:42:37 +02:00
return 0