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 */
011@JStache(path = "hello")
012public record HelloModel(String message) {
013
014}