Last active
February 29, 2020 16:28
-
-
Save jwulf/dc1a619a8da2435526af24d2237a362e to your computer and use it in GitHub Desktop.
A code sample from the article https://joshwulf.com/blog/2020/03/camunda-cloud-connection-2/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { GrpcClient, GrpcClientCtor } from './GRPCClient' | |
export class GrpcConnectionFactory { | |
public static getGrpcClient(config: GrpcClientCtor) { | |
return new GrpcClient(config) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment