Update misc.go

This commit is contained in:
Arminas 2023-01-04 15:30:30 +02:00 committed by GitHub
parent eda9fe23ae
commit 1315d9f749
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,3 +11,9 @@ type BaseData struct {
Active string Active string
CurrentUser string CurrentUser string
} }
// ClientServerHashes struct, to save hashes to detect changes
type ClientServerHashes struct {
Client string `json:"client"`
Server string `json:"server"`
}