github.com/cs3org/reva/v2@v2.27.7/cmd/revad/runtime/loader.go (about)

     1  // Copyright 2018-2021 CERN
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  //
    15  // In applying this license, CERN does not waive the privileges and immunities
    16  // granted to it by virtue of its status as an Intergovernmental Organization
    17  // or submit itself to any jurisdiction.
    18  
    19  package runtime
    20  
    21  import (
    22  	// These are all the extensions points for REVA
    23  	_ "github.com/cs3org/reva/v2/internal/grpc/interceptors/loader"
    24  	_ "github.com/cs3org/reva/v2/internal/grpc/services/loader"
    25  	_ "github.com/cs3org/reva/v2/internal/http/interceptors/auth/credential/loader"
    26  	_ "github.com/cs3org/reva/v2/internal/http/interceptors/auth/token/loader"
    27  	_ "github.com/cs3org/reva/v2/internal/http/interceptors/auth/tokenwriter/loader"
    28  	_ "github.com/cs3org/reva/v2/internal/http/interceptors/loader"
    29  	_ "github.com/cs3org/reva/v2/internal/http/services/loader"
    30  	_ "github.com/cs3org/reva/v2/pkg/app/provider/loader"
    31  	_ "github.com/cs3org/reva/v2/pkg/app/registry/loader"
    32  	_ "github.com/cs3org/reva/v2/pkg/appauth/manager/loader"
    33  	_ "github.com/cs3org/reva/v2/pkg/auth/manager/loader"
    34  	_ "github.com/cs3org/reva/v2/pkg/auth/registry/loader"
    35  	_ "github.com/cs3org/reva/v2/pkg/cbox/loader"
    36  	_ "github.com/cs3org/reva/v2/pkg/datatx/manager/loader"
    37  	_ "github.com/cs3org/reva/v2/pkg/group/manager/loader"
    38  	_ "github.com/cs3org/reva/v2/pkg/metrics/driver/loader"
    39  	_ "github.com/cs3org/reva/v2/pkg/ocm/invite/repository/loader"
    40  	_ "github.com/cs3org/reva/v2/pkg/ocm/provider/authorizer/loader"
    41  	_ "github.com/cs3org/reva/v2/pkg/ocm/share/repository/loader"
    42  	_ "github.com/cs3org/reva/v2/pkg/permission/manager/loader"
    43  	_ "github.com/cs3org/reva/v2/pkg/preferences/loader"
    44  	_ "github.com/cs3org/reva/v2/pkg/publicshare/manager/loader"
    45  	_ "github.com/cs3org/reva/v2/pkg/rhttp/datatx/manager/loader"
    46  	_ "github.com/cs3org/reva/v2/pkg/share/cache/warmup/loader"
    47  	_ "github.com/cs3org/reva/v2/pkg/share/manager/loader"
    48  	_ "github.com/cs3org/reva/v2/pkg/storage/favorite/loader"
    49  	_ "github.com/cs3org/reva/v2/pkg/storage/fs/loader"
    50  	_ "github.com/cs3org/reva/v2/pkg/storage/registry/loader"
    51  	_ "github.com/cs3org/reva/v2/pkg/token/manager/loader"
    52  	_ "github.com/cs3org/reva/v2/pkg/user/manager/loader"
    53  )