add missing auth interceptors

This commit is contained in:
timka
2025-12-17 18:54:08 +03:00
parent 276bd2182a
commit 346c5c5ff4
3 changed files with 19 additions and 2 deletions
-1
View File
@@ -79,7 +79,6 @@ func (s *Server) registerGRPCServices() error {
s.grpcServer = grpc.NewServer(
grpc.UnaryInterceptor(authInterceptor.Unary()),
)
taskRepo := taskPostgresRepo.NewTaskRepository(s.db)
taskService := service.NewTaskService(taskRepo)