feat: use XDG directory standards

Signed-off-by: Mustafa Elbehery <melbeher@redhat.com>
This commit is contained in:
Mustafa Elbehery 2025-07-03 18:48:53 +02:00
parent 9736f096f6
commit 407c3e3bad
50 changed files with 5611 additions and 508 deletions

View file

@ -7,6 +7,7 @@
import argparse
from .download import Download
from .migrate_xdg import MigrateXDG
from .model import ModelParser
from .stack import StackParser
from .stack.utils import print_subcommand_description
@ -34,6 +35,7 @@ class LlamaCLIParser:
StackParser.create(subparsers)
Download.create(subparsers)
VerifyDownload.create(subparsers)
MigrateXDG.create(subparsers)
print_subcommand_description(self.parser, subparsers)