X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5a3b04f7177afe202ab4f8776b5ca2567b4fdabe..0f5b0542513b572959e39400bae42e69aeb1a7b6:/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"` }