i have 2 controllers which are on the path controllers/create_controller.js and controllers/app/todos_controller.js. How can I add outlet todos for the create controller?
my HTML:

create_controller.js:
`import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = ["todoText"]
static outlets = ["todos"]
createTodo(e) {
e.preventDefault()
this.todosOutlet.addTodo(this.todoTextTarget.value)
this.todoTextTarget.value = ""
}
}
_app/todos_controller.js:_import { Controller } from "@hotwired/stimulus"
import { v4 as uuid } from 'uuid'
export default class extends Controller {
static targets = ["todos"]
static values = { todos: Array }
initialize() {
this.todos = []
}
addTodo(todo) {
this.todos.push({
todo,
id: uuid(),
active: false
})
this.renderTodos()
}
renderTodos() {
let todos = ''
this.todos.forEach(todo => {
todos += <li class="${todo.active ? 'active' : ''}"> <p>${todo.todo}</p> <input data-action="todos#changeActiveTodo" data-todos-id-param="${todo.id}" type="checkbox" value="${todo.active}" > </li>
})
this.todosTarget.innerHTML = todos
}
}
`
i have 2 controllers which are on the path controllers/create_controller.js and controllers/app/todos_controller.js. How can I add outlet todos for the create controller?

my HTML:
create_controller.js:
`import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = ["todoText"]
static outlets = ["todos"]
createTodo(e) {
e.preventDefault()
this.todosOutlet.addTodo(this.todoTextTarget.value)
this.todoTextTarget.value = ""
}
}
_app/todos_controller.js:_import { Controller } from "@hotwired/stimulus"import { v4 as uuid } from 'uuid'
export default class extends Controller {
static targets = ["todos"]
static values = { todos: Array }
initialize() {
this.todos = []
}
addTodo(todo) {
this.todos.push({
todo,
id: uuid(),
active: false
})
this.renderTodos()
}
renderTodos() {
let todos = ''
this.todos.forEach(todo => {
todos +=
<li class="${todo.active ? 'active' : ''}"> <p>${todo.todo}</p> <input data-action="todos#changeActiveTodo" data-todos-id-param="${todo.id}" type="checkbox" value="${todo.active}" > </li>})
this.todosTarget.innerHTML = todos
}
}
`