001package io.jstach.opt.spring.webflux.example; 002 003import org.springframework.boot.SpringApplication; 004import org.springframework.boot.autoconfigure.SpringBootApplication; 005 006import io.jstach.jstache.JStachePath; 007 008/** 009 * Entry point. 010 * 011 * @author agentgt 012 */ 013@SpringBootApplication 014@JStachePath(prefix = "views/", suffix = ".mustache") 015public class App { 016 017 /** 018 * To placate JDK 18 javadoc. 019 */ 020 public App() { 021 } 022 023 /** 024 * Canonical entry point that will launch Spring 025 * @param args the command line args 026 */ 027 public static void main(String[] args) { 028 SpringApplication.run(App.class, args); 029 } 030 031}