OLD | NEW |
---|---|
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
| |
OLD | NEW |