2026-02-23 10:18:34 +00:00
|
|
|
import { Application } from "@hotwired/stimulus";
|
|
|
|
|
|
|
|
|
|
import ToastController from "./controllers/toast";
|
|
|
|
|
import PostlistController from "./controllers/postlist";
|
2026-02-24 11:21:26 +00:00
|
|
|
import PosteditController from "./controllers/postedit";
|
2026-02-23 10:18:34 +00:00
|
|
|
|
|
|
|
|
window.Stimulus = Application.start()
|
|
|
|
|
Stimulus.register("toast", ToastController);
|
|
|
|
|
Stimulus.register("postlist", PostlistController);
|
2026-02-24 11:21:26 +00:00
|
|
|
Stimulus.register("postedit", PosteditController);
|