# registerProtocol Function

Module
import { registerProtocol } from "@tsed/passport"
Source/packages/passport/src/registries/ProtocolRegistries.ts

# Overview

const registerProtocol: (provider: any, instance?: any) => void;

# Description

Add a new service in the ProviderRegistry. This service will be built when InjectorService will be loaded.

# Example

import {registerSocketService, InjectorService} from "@tsed/common";

export default class MyFooService {
    constructor(){}
    getFoo() {
        return "test";
    }
}

registerSocketService({provide: MyFooService});
// or
registerSocketService(MyFooService);

const injector = new InjectorService();
injector.load();

const myFooService = injector.get<MyFooService>(MyFooService);
myFooService.getFoo(); // test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18