1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vweb: make controllers of struct Controller public (#18153)

This commit is contained in:
yuyi 2023-05-10 23:31:43 +08:00 committed by GitHub
parent d62c4c9fc1
commit 492a93ecd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -420,7 +420,7 @@ interface ControllerInterface {
} }
pub struct Controller { pub struct Controller {
mut: pub mut:
controllers []&ControllerPath controllers []&ControllerPath
} }