mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
This is the result of running `npm run format` which applies the Biome formatting rules. Rejoice!
16 lines
449 B
TypeScript
16 lines
449 B
TypeScript
import { HandbookHelper } from "@spt/helpers/HandbookHelper";
|
|
import { DatabaseServer } from "@spt/servers/DatabaseServer";
|
|
import { inject, injectable } from "tsyringe";
|
|
|
|
@injectable()
|
|
export class HandbookController {
|
|
constructor(
|
|
@inject("DatabaseServer") protected databaseServer: DatabaseServer,
|
|
@inject("HandbookHelper") protected handbookHelper: HandbookHelper,
|
|
) {}
|
|
|
|
public load(): void {
|
|
return;
|
|
}
|
|
}
|