X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4c8ec1b2166a81b05b2b6cf5a6fae5b839876802..f42ee7c19b794e25db30051b1dfc4bee83929bcd:/doc/_includes/_example_sdk_go.liquid diff --git a/doc/_includes/_example_sdk_go.liquid b/doc/_includes/_example_sdk_go.liquid index 08124e6610..c4aec147c1 100644 --- a/doc/_includes/_example_sdk_go.liquid +++ b/doc/_includes/_example_sdk_go.liquid @@ -1,3 +1,7 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: CC-BY-SA-3.0 + package main @@ -9,7 +13,7 @@ package main import ( "fmt" - "git.curoverse.com/arvados.git/sdk/go/arvadosclient" + "git.arvados.org/arvados.git/sdk/go/arvadosclient" "log" ) @@ -31,6 +35,9 @@ func main() { // 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"` }