From b6e430096fe97859108da4076be8c2c9ad73b65d Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Mon, 22 Jul 2024 23:19:12 +0100 Subject: [PATCH] request_types: add HYPRLAND_VERSION constant --- types.go => request_types.go | 3 +++ 1 file changed, 3 insertions(+) rename types.go => request_types.go (97%) diff --git a/types.go b/request_types.go similarity index 97% rename from types.go rename to request_types.go index a22e77a..ba99931 100644 --- a/types.go +++ b/request_types.go @@ -2,6 +2,9 @@ package hyprland import "net" +// Indicates the version where the structs are up-to-date +const HYPRLAND_VERSION = "0.41.2" + type RawRequest []byte type RawResponse []byte