mirror of
https://github.com/django-components/django-components.git
synced 2025-09-19 12:19:44 +00:00

Some checks are pending
Docs - build & deploy / docs (push) Waiting to run
Run tests / build (ubuntu-latest, 3.10) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.11) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.12) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.8) (push) Waiting to run
Run tests / test_sampleproject (3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.9) (push) Waiting to run
Run tests / build (windows-latest, 3.10) (push) Waiting to run
Run tests / build (windows-latest, 3.11) (push) Waiting to run
Run tests / build (windows-latest, 3.12) (push) Waiting to run
Run tests / build (windows-latest, 3.13) (push) Waiting to run
Run tests / build (windows-latest, 3.8) (push) Waiting to run
Run tests / build (windows-latest, 3.9) (push) Waiting to run
Run tests / test_docs (3.13) (push) Waiting to run
9 lines
341 B
Python
9 lines
341 B
Python
from django_components.commands.create import CreateCommand
|
|
|
|
|
|
# TODO_REMOVE_IN_V1 - Superseded by `components create`
|
|
class StartComponentCommand(CreateCommand):
|
|
"""**Deprecated**. Use [`components create`](../commands#components-create) instead."""
|
|
|
|
name = "startcomponent"
|
|
help = "Deprecated. Use `components create` instead."
|