mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 23:11:52 +08:00
14 lines
237 B
Java
14 lines
237 B
Java
import com.opensymphony.xwork2.ActionSupport;
|
|
|
|
/**
|
|
* @author ReaJason
|
|
* @since 2024/12/7
|
|
*/
|
|
public class TestAction extends ActionSupport {
|
|
|
|
@Override
|
|
public String execute() throws Exception {
|
|
return SUCCESS;
|
|
}
|
|
}
|