i have a custom management command to which I would like to import one of my app’s views. Tried using import as below but won’t work, while running as a standalone script.
from files.views import upload_log_file_without_request
below is my project structure and watch_logfiles.py is the custom command where i want to import the views from my files app.
