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

Unified Diff: appengine/logdog/coordinator/endpoints/registration/registerPrefix.go

Issue 1970823005: LogDog: Add prefix registration endpoint. (Closed) Base URL: https://github.com/luci/luci-go@logdog-project-archivist-useconfig
Patch Set: Updated patchset dependency Created 4 years, 7 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/logdog/coordinator/endpoints/registration/registerPrefix.go
diff --git a/appengine/logdog/coordinator/endpoints/registration/registerPrefix.go b/appengine/logdog/coordinator/endpoints/registration/registerPrefix.go
new file mode 100644
index 0000000000000000000000000000000000000000..41b02d9e5127a0debab8a45af85adc4824803e77
--- /dev/null
+++ b/appengine/logdog/coordinator/endpoints/registration/registerPrefix.go
@@ -0,0 +1,16 @@
+// Copyright 2016 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 registration
+
+import (
+ "github.com/luci/luci-go/common/api/logdog_coordinator/registration/v1"
+ "github.com/luci/luci-go/common/grpcutil"
+ "golang.org/x/net/context"
+)
+
+func (s *server) RegisterPrefix(c context.Context, req *logdog.RegisterPrefixRequest) (*logdog.RegisterPrefixResponse, error) {
+ // TODO(dnj): Actually implement this endpoint.
+ return nil, grpcutil.Unimplemented
+}
« no previous file with comments | « appengine/logdog/coordinator/endpoints/logs/service.go ('k') | appengine/logdog/coordinator/endpoints/registration/service.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698