org.camunda.feel.playground.ProcessApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feel-scala-playground Show documentation
Show all versions of feel-scala-playground Show documentation
The API for the FEEL-Scala Playground
package org.camunda.feel.playground;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ProcessApplication {
public static void main(String[] args) {
SpringApplication.run(ProcessApplication.class, args);
}
}