8 lines
172 B
Swift
8 lines
172 B
Swift
|
public protocol TemplateServicing {
|
||
|
|
||
|
// MARK: Functions
|
||
|
|
||
|
func render(_ object: Any, on template: String) async throws (RenderServiceError) -> String
|
||
|
|
||
|
}
|