Files
svc-api-x/v1/taffy/examples/coldspring_aop/endpoints/SamplesFormatting.cfc
2024-10-23 11:17:42 +03:00

12 lines
343 B
Plaintext

<cfcomponent extends="taffy.core.resource" taffy:uri="/aop/formatting" taffy:aopbean="sampleWithFormattingAdvice">
<cffunction name="get" access="public" output="false" hint="">
<cfscript>
local.resourceData = StructNew();
local.resourceData["foo"] = "bar";
return local.resourceData;
</cfscript>
</cffunction>
</cfcomponent>