All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mvnpm.esbuild.resolve.Resolver Maven / Gradle / Ivy

package io.mvnpm.esbuild.resolve;

import java.io.IOException;
import java.nio.file.Path;

public interface Resolver {
    Path resolve(String version) throws IOException;

    static Resolver create() {
        final DownloadResolver downloadResolver = new DownloadResolver();
        return new BundledResolver(downloadResolver);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy