aboutsummaryrefslogtreecommitdiff
path: root/src/background/controllers/FindController.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-05-19 21:34:08 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-05-19 21:34:08 +0900
commitcdfd54ed99087dc4a7a3fd13865849ff9ce9e8ba (patch)
treeca18790151d4e6cf003367f0dd87c27371d2b2c8 /src/background/controllers/FindController.ts
parentc7803e7c2911f63e43611290b996f526c0f8aaf2 (diff)
Use TSyringe on background script
Diffstat (limited to 'src/background/controllers/FindController.ts')
-rw-r--r--src/background/controllers/FindController.ts9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/background/controllers/FindController.ts b/src/background/controllers/FindController.ts
index 28959e2..1cec962 100644
--- a/src/background/controllers/FindController.ts
+++ b/src/background/controllers/FindController.ts
@@ -1,10 +1,11 @@
+import { injectable } from 'tsyringe';
import FindUseCase from '../usecases/FindUseCase';
+@injectable()
export default class FindController {
- private findUseCase: FindUseCase;
-
- constructor() {
- this.findUseCase = new FindUseCase();
+ constructor(
+ private findUseCase: FindUseCase,
+ ) {
}
getKeyword(): Promise<string> {