From 580b7d5a3aae3df584bb7f394ca50a8abb85c3f7 Mon Sep 17 00:00:00 2001 From: Tordarus Date: Wed, 30 Jul 2025 10:04:09 +0200 Subject: [PATCH] changed string type of output reference to OutputName --- model_workspace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_workspace.go b/model_workspace.go index af5c256..b6f47de 100644 --- a/model_workspace.go +++ b/model_workspace.go @@ -7,7 +7,7 @@ type WorkspaceID int type Workspace struct { ID WorkspaceID `json:"id"` Name string `json:"name"` - Output string `json:"output"` + Output OutputName `json:"output"` Urgent bool `json:"is_urgent"` Active bool `json:"is_active"` Focused bool `json:"is_focused"`