| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. |
| 4 |
| 5 package serviceaccounts |
| 6 |
| 7 import ( |
| 8 "golang.org/x/net/context" |
| 9 "google.golang.org/grpc" |
| 10 "google.golang.org/grpc/codes" |
| 11 |
| 12 "github.com/golang/protobuf/ptypes/empty" |
| 13 "github.com/luci/luci-go/tokenserver/api/admin/v1" |
| 14 ) |
| 15 |
| 16 // ImportServiceAccountsConfigsRPC implements Admin.ImportServiceAccountsConfigs |
| 17 // method. |
| 18 type ImportServiceAccountsConfigsRPC struct { |
| 19 } |
| 20 |
| 21 // ImportServiceAccountsConfigs fetches configs from from luci-config right now. |
| 22 func (r *ImportServiceAccountsConfigsRPC) ImportServiceAccountsConfigs(c context
.Context, _ *empty.Empty) (*admin.ImportedConfigs, error) { |
| 23 return nil, grpc.Errorf(codes.Unavailable, "not implemented") |
| 24 } |
| OLD | NEW |