package com.proxgrind.chameleon.callback;
public interface ActionCallback<S, F> {
void onSuccess(S s);
void onFail(F f);
}