OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 package registration |
| 6 |
| 7 import ( |
| 8 "github.com/luci/luci-go/common/api/logdog_coordinator/registration/v1" |
| 9 "github.com/luci/luci-go/common/grpcutil" |
| 10 "golang.org/x/net/context" |
| 11 ) |
| 12 |
| 13 func (s *server) RegisterPrefix(c context.Context, req *logdog.RegisterPrefixReq
uest) (*logdog.RegisterPrefixResponse, error) { |
| 14 // TODO(dnj): Actually implement this endpoint. |
| 15 return nil, grpcutil.Unimplemented |
| 16 } |
OLD | NEW |