From c1545590d4356683b78b802adae621fb7a3c75d1 Mon Sep 17 00:00:00 2001 From: andrea Date: Fri, 1 Dec 2023 09:34:26 +0100 Subject: [PATCH] First implementation of probo server component --- models/participant.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/participant.go b/models/participant.go index d5837d9..f585c94 100644 --- a/models/participant.go +++ b/models/participant.go @@ -16,7 +16,7 @@ type Participant struct { Firstname string `csv:"firstname"` Lastname string `csv:"lastname"` - Token uint `csv:"token"` + Token int `csv:"token"` Attributes AttributeList `csv:"attributes"` }