| Index: tokenserver/appengine/impl/serviceaccounts/rpc_import_service_accounts_configs.go
|
| diff --git a/tokenserver/appengine/impl/serviceaccounts/rpc_import_service_accounts_configs.go b/tokenserver/appengine/impl/serviceaccounts/rpc_import_service_accounts_configs.go
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a2a31acfe0e70576a4c847b2afb9479b94960e89
|
| --- /dev/null
|
| +++ b/tokenserver/appengine/impl/serviceaccounts/rpc_import_service_accounts_configs.go
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2017 The LUCI Authors. All rights reserved.
|
| +// Use of this source code is governed under the Apache License, Version 2.0
|
| +// that can be found in the LICENSE file.
|
| +
|
| +package serviceaccounts
|
| +
|
| +import (
|
| + "golang.org/x/net/context"
|
| + "google.golang.org/grpc"
|
| + "google.golang.org/grpc/codes"
|
| +
|
| + "github.com/golang/protobuf/ptypes/empty"
|
| + "github.com/luci/luci-go/tokenserver/api/admin/v1"
|
| +)
|
| +
|
| +// ImportServiceAccountsConfigsRPC implements Admin.ImportServiceAccountsConfigs
|
| +// method.
|
| +type ImportServiceAccountsConfigsRPC struct {
|
| +}
|
| +
|
| +// ImportServiceAccountsConfigs fetches configs from from luci-config right now.
|
| +func (r *ImportServiceAccountsConfigsRPC) ImportServiceAccountsConfigs(c context.Context, _ *empty.Empty) (*admin.ImportedConfigs, error) {
|
| + return nil, grpc.Errorf(codes.Unavailable, "not implemented")
|
| +}
|
|
|