001package io.jstach.opt.spring.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 * @author agentgt 009 * @param message The greeting message 010 */ 011@JStache(path = "hello") 012public record HelloModel(String message) { 013 014}