Index: common/config/util.go |
diff --git a/common/config/util.go b/common/config/util.go |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a7ceb3079ec0ea2080b5b929ee4a7121fd68e933 |
--- /dev/null |
+++ b/common/config/util.go |
@@ -0,0 +1,14 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package config |
+ |
+import ( |
+ "fmt" |
+) |
+ |
+// ProjectConfigSet returns the name of the ConfigSet associated with project. |
+func ProjectConfigSet(project ProjectName) string { |
+ return fmt.Sprintf("projects/%s", project) |
+} |