aboutsummaryrefslogtreecommitdiff
path: root/src/content/operators/impls/StartFollowOperator.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/operators/impls/StartFollowOperator.ts')
-rw-r--r--src/content/operators/impls/StartFollowOperator.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/content/operators/impls/StartFollowOperator.ts b/src/content/operators/impls/StartFollowOperator.ts
new file mode 100644
index 0000000..6f30058
--- /dev/null
+++ b/src/content/operators/impls/StartFollowOperator.ts
@@ -0,0 +1,14 @@
+import Operator from "../Operator";
+import FollowMasterClient from "../../client/FollowMasterClient";
+
+export default class StartFollowOperator implements Operator {
+ constructor(
+ private readonly followMasterClient: FollowMasterClient,
+ private readonly newTab: boolean,
+ private readonly background: boolean
+ ) {}
+
+ async run(): Promise<void> {
+ this.followMasterClient.startFollow(this.newTab, this.background);
+ }
+}