diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-19T15·24+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-19T15·24+0000 |
commit | e996141d2ea24da382b8702e974f2b3baa5a6135 (patch) | |
tree | 92801e051eeb8d1d88c61a97ae4da3fb7a226099 /overrides/buildGo/example/lib.go | |
parent | 11865364acaa4b03124c6beb73f6b7a18776eae6 (diff) | |
parent | a8fbdc52c2d7170bc8b144bef9d522bef9f0d815 (diff) |
merge(buildGo): Integrate buildGo.nix into depot r/202
Diffstat (limited to 'overrides/buildGo/example/lib.go')
-rw-r--r-- | overrides/buildGo/example/lib.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/overrides/buildGo/example/lib.go b/overrides/buildGo/example/lib.go new file mode 100644 index 000000000000..8a61370e994c --- /dev/null +++ b/overrides/buildGo/example/lib.go @@ -0,0 +1,9 @@ +// Copyright 2019 Google LLC. +// SPDX-License-Identifier: Apache-2.0 + +package example + +// UUID returns a totally random, carefully chosen UUID +func UUID() string { + return "3640932f-ad40-4bc9-b45d-f504a0f5910a" +} |