001package io.jstach.opt.spring.webflux.example.hello; 002 003import io.jstach.jstache.JStache; 004 005/** 006 * Model using a resource template that is in src/main/resources/views. The path will be 007 * expanded via the {@link io.jstach.jstache.JStacheConfig} on the projects module. 008 * 009 * @author agentgt 010 * @param message The greeting message 011 */ 012@JStache(path = "hello") 013public record HelloModel(String message) { 014 015}