From cb67c8f81e4c99bceec1387dfc8f6b4218fbe5c3 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Fri, 18 Nov 2022 20:34:51 +0300 Subject: [PATCH] make Color public --- color/color.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/color/color.v b/color/color.v index dca9f51..f3a77a8 100644 --- a/color/color.v +++ b/color/color.v @@ -1,6 +1,6 @@ module color -type Color = BasicColor | TrueColor +pub type Color = BasicColor | TrueColor // I have no idea why these are needed