mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:29:15 +02:00
16 lines
424 B
Python
16 lines
424 B
Python
from . import create_actors
|
|
from . import create_image_variations
|
|
from . import django_permissions_to_user_permissions
|
|
from . import migrate_to_user_libraries
|
|
from . import delete_pre_017_federated_uploads
|
|
from . import test
|
|
|
|
|
|
__all__ = [
|
|
"create_actors",
|
|
"create_image_variations",
|
|
"django_permissions_to_user_permissions",
|
|
"migrate_to_user_libraries",
|
|
"delete_pre_017_federated_uploads",
|
|
"test",
|
|
]
|