Skip to content

Commit

Permalink
refactor: added start method in class
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNilesh committed Sep 15, 2023
1 parent 8f73167 commit e236eb4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/restapi/src/lib/spaceV2/SpaceV2.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { produce } from "immer";

import { join } from "./join";
import { start } from "./start";
import { acceptInvite } from "./acceptInvite";
import { ISpaceInviteInputOptions, inviteToJoin } from "./inviteToJoin";

Expand Down Expand Up @@ -188,4 +189,6 @@ export class SpaceV2 {
public join = join;

public acceptInvite = acceptInvite;

public start = start;
}

0 comments on commit e236eb4

Please sign in to comment.