Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2096)

Unified Diff: appengine/cmd/dm/distributor/protos/swarmingV1/swarmingV1.proto

Issue 1537883002: Initial distributor implementation (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: work in progress Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/cmd/dm/distributor/protos/swarmingV1/swarmingV1.proto
diff --git a/appengine/cmd/dm/mutate/error_util.go b/appengine/cmd/dm/distributor/protos/swarmingV1/swarmingV1.proto
similarity index 68%
copy from appengine/cmd/dm/mutate/error_util.go
copy to appengine/cmd/dm/distributor/protos/swarmingV1/swarmingV1.proto
index e9efdb9a7a1b7bf554470a0033024c0cbae83d6e..04219817f37955f60c7b356f93f88a9a2c338303 100644
--- a/appengine/cmd/dm/mutate/error_util.go
+++ b/appengine/cmd/dm/distributor/protos/swarmingV1/swarmingV1.proto
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-package mutate
+syntax = "proto3";
-func impossible(err error) {
- if err != nil {
- panic(err)
- }
+package swarmingV1;
+
+message Config {
+ string url = 1;
}

Powered by Google App Engine
This is Rietveld 408576698