9 lines
292 B
Java
9 lines
292 B
Java
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; }
|
|
} |