Skip to content

Commit

Permalink
chore: organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
whilefoo committed Jan 31, 2025
1 parent a4f76e5 commit 977a3a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handlers/user-start-stop.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { createAppAuth } from "@octokit/auth-app";
import { Repository } from "@octokit/graphql-schema";
import { customOctokit } from "@ubiquity-os/plugin-sdk/octokit";
import { Context, isIssueCommentEvent } from "../types";
import { QUERY_CLOSING_ISSUE_REFERENCES } from "../utils/get-closing-issue-references";
import { closePullRequest, closePullRequestForAnIssue, getOwnerRepoFromHtmlUrl } from "../utils/issue";
import { HttpStatusCode, Result } from "./result-types";
import { getDeadline } from "./shared/generate-assignment-comment";
import { start } from "./shared/start";
import { stop } from "./shared/stop";
import { customOctokit } from "@ubiquity-os/plugin-sdk/octokit";
import { createAppAuth } from "@octokit/auth-app";

export async function commandHandler(context: Context): Promise<Result> {
if (!isIssueCommentEvent(context)) {
Expand Down

0 comments on commit 977a3a2

Please sign in to comment.