I have a service that I use in a backend to clear and set data into cachebox.
In the Coldbox.cfc of my app I set some settings by making a call to a standard component - i.e mysetting = new common.foo.getSettings().
Foo is the same CFC that I use in the backend that has cachebox injected, however when I access it this way it doesn’t know what cachebox is since it hasn’t been initialized with the framework.
So my question is, how could I modify the CFC so that I can access cachebox regardless of the CFC being initialize in or outside of the framework.