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); }