Skip to content
Snippets Groups Projects
main.connector.ts 348 B
Newer Older
import { HttpService } from "@nestjs/axios";
Steve Reis's avatar
Steve Reis committed
import { IEngineOptions, IEngineService } from "src/engine/engine.interfaces";

export default class ExaremeService implements IEngineService {
    constructor(private readonly options: IEngineOptions, private readonly httpService: HttpService) { }

    demo(): string {
        return "exareme"
    }
}