| 71 | } |
| 72 | |
| 73 | type Server struct { |
| 74 | adminv1.UnsafeAdminServiceServer |
| 75 | adminv1.UnsafeAIServiceServer |
| 76 | adminv1.UnsafeTelemetryServiceServer |
| 77 | logger *zap.Logger |
| 78 | admin *admin.Service |
| 79 | opts *Options |
| 80 | cookies *cookies.Store |
| 81 | authenticator *auth.Authenticator |
| 82 | issuer *runtimeauth.Issuer |
| 83 | limiter ratelimit.Limiter |
| 84 | activity *activity.Client |
| 85 | } |
| 86 | |
| 87 | var _ adminv1.AdminServiceServer = (*Server)(nil) |
| 88 |
nothing calls this directly
no outgoing calls
no test coverage detected