first commit

This commit is contained in:
Ray
2026-02-19 03:37:37 +08:00
commit ccfd8c79a4
2813 changed files with 453657 additions and 0 deletions

26
comm/FollowUp/config/api.xml Executable file
View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="api" namespace="/api" extends="root">
<result-types>
<result-type name="json"
class="org.apache.struts2.json.JSONResult" />
</result-types>
<interceptors>
<interceptor name="json"
class="org.apache.struts2.json.JSONInterceptor" />
</interceptors>
<action name="trader"
class="project.follow.web.TraderAction">
</action>
<action name="traderFollowUser"
class="project.follow.web.TraderFollowUserAction">
</action>
<action name="traderUser"
class="project.follow.web.TraderUserAction">
</action>
</package>
</struts>