com.firefly.template.View Maven / Gradle / Ivy
package com.firefly.template;
import java.io.OutputStream;
public interface View {
void render(Model model, OutputStream out);
}
package com.firefly.template;
import java.io.OutputStream;
public interface View {
void render(Model model, OutputStream out);
}