pluginapi/src/main/java/xyz/etztech/core/web/ICallback.java

14 lines
227 B
Java

package xyz.etztech.core.web;
/**
* An interface for Core async callbacks
*/
public interface ICallback {
/**
* @param httpResponse The response from the async call
*/
void invoke(String httpResponse);
}