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

Side by Side Diff: common/api/logdog_coordinator/registration/v1/gen.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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 //go:generate cproto 5 //go:generate cproto
6 //go:generate svcdec -type AdminServer 6 //go:generate svcdec -type RegistrationServer
7 7
8 // Package logdog contains Version 1 of the LogDog Coordinator service 8 // Package logdog contains Version 1 of the LogDog Coordinator stream
9 // interface. 9 // registration interface.
10 // 10 //
11 // The package name here must match the protobuf package name, as the generated 11 // The package name here must match the protobuf package name, as the generated
12 // files will reside in the same directory. 12 // files will reside in the same directory.
13 package logdog 13 package logdog
14 14
15 import ( 15 import (
16 "github.com/golang/protobuf/proto" 16 "github.com/golang/protobuf/proto"
17 ) 17 )
18 18
19 var _ = proto.Marshal 19 var _ = proto.Marshal
nodir 2016/05/19 16:43:17 why do we still need this? I don't think I ever pu
dnj (Google) 2016/05/19 22:52:04 This was originally b/c it is possible for this di
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698