From 9fe24d3b9416a5804640ac4bcefa6314c47466d3 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Tue, 22 Apr 2025 09:11:20 -0600 Subject: [PATCH] Added application dependencies Necessary to configure all dependencies listed within the container for automatic injection as desired. --- lib/trmnl/api/dependencies.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/trmnl/api/dependencies.rb diff --git a/lib/trmnl/api/dependencies.rb b/lib/trmnl/api/dependencies.rb new file mode 100644 index 0000000..94fbd56 --- /dev/null +++ b/lib/trmnl/api/dependencies.rb @@ -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