Files
Chromy/chromy/handlers/count_collection.py
T
2026-04-22 22:14:26 +02:00

9 lines
197 B
Python

from __future__ import annotations
from chromy.chroma_functions import count_collection
def handle_count_collection(collection: str) -> int:
print(count_collection(collection))
return 0