X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/403d9f6b700f38cd3caf067445233b5ead99466c..3d65beeef57b2dd7a60171c8dce05785ef1ae383:/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"` }