mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-03 19:57:35 +00:00
12 lines
274 B
Python
12 lines
274 B
Python
class Subcommand:
|
|
"""All llama cli subcommands must inherit from this class"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
pass
|
|
|
|
@classmethod
|
|
def create(cls, *args, **kwargs):
|
|
return cls(*args, **kwargs)
|
|
|
|
def _add_arguments(self):
|
|
pass
|