|
# pylint: disable=import-outside-toplevel
|
|
|
|
import djclick as click
|
|
from django.contrib.auth import get_user_model
|
|
|
|
from vbv_lernwelt.learnpath.tests.create_default_learning_path import create_default_learning_path
|
|
|
|
|
|
@click.command()
|
|
def command():
|
|
create_default_learning_path()
|