Added application dependencies

Necessary to configure all dependencies listed within the container for automatic injection as desired.
This commit is contained in:
Brooke Kuhlmann
2025-04-22 14:24:33 -06:00
parent 7c8db493fd
commit 9fe24d3b94
+10
View File
@@ -0,0 +1,10 @@
# frozen_string_literal: true
require "infusible"
module TRMNL
# Defines endpoint dependencies for automatic injection.
module API
Dependencies = Infusible[Container]
end
end