From 492a93ecd92e50df90ba9d9bd88d34e0e61d97b5 Mon Sep 17 00:00:00 2001 From: yuyi Date: Wed, 10 May 2023 23:31:43 +0800 Subject: [PATCH] vweb: make controllers of struct Controller public (#18153) --- vlib/vweb/vweb.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 9938ce65d4..cca1156957 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -420,7 +420,7 @@ interface ControllerInterface { } pub struct Controller { -mut: +pub mut: controllers []&ControllerPath }