+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: CC-BY-SA-3.0
+
package main
import (
"fmt"
- "git.curoverse.com/arvados.git/sdk/go/arvadosclient"
+ "git.arvados.org/arvados.git/sdk/go/arvadosclient"
"log"
)
//
type user struct {
+ // Remember to start each field name with a capital letter,
+ // otherwise it won't get populated by the arvados client because
+ // the field will be invisible to it.
Uuid string `json:"uuid"`
FullName string `json:"full_name"`
}