package io.wealthwizards.appsynctesting;

import org.apache.velocity.app.event.IncludeEventHandler;
import org.apache.velocity.context.Context;

// used to disable #include and #parse
public final class AppSyncIncludeEventHandler implements IncludeEventHandler {
    @Override
    public String includeEvent(Context context, String includeResourcePath, String currentResourcePath, String directiveName) {
        return null;
    }
}
