2023-09-04 11:30:57 +00:00
|
|
|
package me.topchetoeu.jscript.engine.modules;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
|
|
|
public interface ModuleProvider {
|
|
|
|
Module getModule(File cwd, String name);
|
|
|
|
String getRealName(File cwd, String name);
|
|
|
|
default boolean hasModule(File cwd, String name) { return getRealName(cwd, name) != null; }
|
2023-08-05 15:37:18 +00:00
|
|
|
}
|