io.polyapi.plugin.service.DeploymentService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyapi-maven-plugin Show documentation
Show all versions of polyapi-maven-plugin Show documentation
Maven plugin to run handle Poly API functions.
package io.polyapi.plugin.service;
import io.polyapi.plugin.model.function.PolyFunction;
import java.util.List;
public interface DeploymentService {
List deployFunctions(List functions, boolean dryRun);
}