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