first commit

This commit is contained in:
2026-06-03 15:55:08 +03:00
commit 9f547d8d9e
3 changed files with 33 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<cfcomponent displayname="Application" output="true">
<cfset this.Name = "llmui" />
<cfset this.applicationTimeout = createTimeSpan(0, 0, 3, 0) />
<cfset this.sessionmanagement = "Yes" />
<cffunction name="OnApplicationStart" access="public" returntype="boolean" output="false">
<cfreturn true />
</cffunction>
<cffunction name="OnRequestStart" access="public" returntype="boolean" output="false">
<cfargument name="targetPage" type="string" required="true" />
<cfreturn true />
</cffunction>
</cfcomponent>