From 72c63f35083328dbadb652c6ee3b5e13e9ccf266 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Sat, 4 Nov 2023 20:44:00 +0100 Subject: [PATCH] derp id is a string --- internal/models/structs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/models/structs.go b/internal/models/structs.go index 1abe885..34670bc 100644 --- a/internal/models/structs.go +++ b/internal/models/structs.go @@ -30,7 +30,7 @@ package models */ type JobInformation struct { - ID int `json:"id"` + ID string `json:"id"` Data string `json:"data"` Labels map[string]string `json:"labels"` Dependencies string `json:"dependencies,omitempty"`