package com.thebrokenrail.modupdater.api; import com.thebrokenrail.modupdater.data.ModUpdate; import javax.annotation.Nullable; public interface UpdateStrategy { @Nullable ModUpdate run(ConfigObject obj, String oldVersion, String name); }