Discord-InterChat/InterChat

View on GitHub
src/core/Factory.ts

Summary

Maintainability
A
0 mins
Test Coverage
import InterChatClient from './BaseClient.js';

export default abstract class Factory {
  protected readonly client: InterChatClient;

  constructor(client: InterChatClient) {
    this.client = client;
  }

  protected getClient(): InterChatClient {
    return this.client;
  }
}