16377: Just checking the new test fails without the fix
[arvados.git] / doc / _includes / _example_sdk_go.liquid
index 08124e661066f43da6fb1637a55d2f73ecb4b4eb..9c84ca0e2a42ec04f1aec28c0dd8c9b0fba60f0d 100644 (file)
@@ -1,3 +1,9 @@
+{% comment %}
+Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: CC-BY-SA-3.0
+{% endcomment %}
+
 package main
 
 
@@ -9,7 +15,7 @@ package main
 
 import (
        "fmt"
-       "git.curoverse.com/arvados.git/sdk/go/arvadosclient"
+       "git.arvados.org/arvados.git/sdk/go/arvadosclient"
        "log"
 )
 
@@ -31,6 +37,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"`
        }