From 08c926a95743f1ceee92bf48b06b68ecf1f017ef Mon Sep 17 00:00:00 2001 From: Oliver Linnarsson Date: Mon, 24 Jun 2024 11:26:42 +0200 Subject: [PATCH] fix: Template type should be opaque --- src/handles.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handles.gleam b/src/handles.gleam index 7600127..f8e2a09 100644 --- a/src/handles.gleam +++ b/src/handles.gleam @@ -6,7 +6,7 @@ import handles/internal/engine import handles/internal/parser import handles/internal/tokenizer -pub type Template { +pub opaque type Template { Template(ast: List(parser.AST)) }