From 7b9dfe0cee3235d269df32f9646032710baec530 Mon Sep 17 00:00:00 2001 From: cyber-dream Date: Wed, 2 Nov 2022 02:42:10 +0300 Subject: [PATCH] change type of update version struct --- updateUtils/updateTypes.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/updateUtils/updateTypes.go b/updateUtils/updateTypes.go index 08b7c7f..ce66623 100644 --- a/updateUtils/updateTypes.go +++ b/updateUtils/updateTypes.go @@ -1,5 +1,6 @@ package updateutils type LastVersion struct { - Version string + Major int + Minor int }