move top-level modules into a real package

This commit is contained in:
Matteo Rosati
2026-04-22 15:47:46 +02:00
parent e33160282c
commit 8ebab832d5
35 changed files with 6192 additions and 31 deletions
+8
View File
@@ -0,0 +1,8 @@
from argparse import Namespace
from chromy.chroma_functions import count_collection
def handle_count_collection(args: Namespace) -> int:
print(count_collection(args.collection))
return 0