You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
528 B
18 lines
528 B
2 years ago
|
package com.fr.plugin.db.procedure.webResourceProvider;
|
||
|
|
||
|
import com.fr.plugin.context.PluginContexts;
|
||
|
import com.fr.web.struct.Component;
|
||
|
import com.fr.web.struct.browser.RequestClient;
|
||
|
import com.fr.web.struct.category.ScriptPath;
|
||
|
|
||
|
public class DbWebResourceComponent extends Component {
|
||
|
public static DbWebResourceComponent KEY = new DbWebResourceComponent();
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public ScriptPath script(RequestClient requestClient) {
|
||
|
return ScriptPath.build("/com/fr/plugin/db/procedure/procedure.js");
|
||
|
|
||
|
}
|
||
|
}
|