Files
svc-api-x/v1/taffy/examples/ParentApplication/api/Application.cfc
T
2024-10-23 11:17:42 +03:00

17 lines
358 B
Plaintext

component extends="taffy.core.api" {
this.name = "taffy_ParentAppExample";//same name as api folder application.cfc
variables.framework = {};
variables.framework.beanFactory = "";
function onApplicationStart(){
include "../mixin/appInit.cfm";
variables.framework.beanFactory = application.beanFactory;
return super.onApplicationStart();
}
}