From 1315d9f749bc55f1399dcd32e7372481806960d5 Mon Sep 17 00:00:00 2001 From: Arminas Date: Wed, 4 Jan 2023 15:30:30 +0200 Subject: [PATCH] Update misc.go --- model/misc.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/model/misc.go b/model/misc.go index 12d6906..374394c 100644 --- a/model/misc.go +++ b/model/misc.go @@ -11,3 +11,9 @@ type BaseData struct { Active string CurrentUser string } + +// ClientServerHashes struct, to save hashes to detect changes +type ClientServerHashes struct { + Client string `json:"client"` + Server string `json:"server"` +}