Defined the "render(_: on: )" function for the TemplateServicing protocol in the library target.

This commit is contained in:
Javier Cicchelli 2025-01-25 00:27:47 +01:00
parent 8bc446ca68
commit bc765705a8

View File

@ -0,0 +1,7 @@
public protocol TemplateServicing {
// MARK: Functions
func render(_ object: Any, on template: String) async throws (RenderServiceError) -> String
}