fenetre 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ // Import necessary libraries and controllers
2
+ // Using import maps for library dependencies
3
+ import { Application, Controller } from "@hotwired/stimulus"
4
+ import VideoChatController from "controllers/fenetre/video_chat_controller"
5
+
6
+ // Initialize Stimulus application
7
+ window.Stimulus = window.Stimulus || Application.start()
8
+
9
+ // Register controllers
10
+ window.Stimulus.register("fenetre--video-chat", VideoChatController)