mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
|
|
import { inject, injectable } from "tsyringe";
|
||
|
|
|
||
|
|
@injectable()
|
||
|
|
export class CollectionsService {
|
||
|
|
constructor(
|
||
|
|
@inject(CollectionsRepository) private readonly collectionsRepository: CollectionsRepository
|
||
|
|
) { }
|
||
|
|
|
||
|
|
|
||
|
|
}
|