File: grpc.rb

package info (click to toggle)
ruby-gitlab-labkit 0.36.1-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 444 kB
  • sloc: ruby: 1,705; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Labkit
  module Correlation
    # The GRPC module contains functionality for instrumenting GRPC calls
    module GRPC
      autoload :ClientInterceptor, "labkit/correlation/grpc/client_interceptor"
      autoload :GRPCCommon, "labkit/correlation/grpc/grpc_common"
      autoload :ServerInterceptor, "labkit/correlation/grpc/server_interceptor"
    end
  end
end