Skip to content

Commit

Permalink
♻️ Refactor import statements in event.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
NatoBoram committed Sep 23, 2024
1 parent 720fa4b commit 88a9ed5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/server/webhooks/events/event.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { prEventKeys, type PrEvent } from "./pr/event.js"
import { projectEventKeys, type ProjectEvent } from "./project/event.js"
import { repoEventKeys, type RepoEvent } from "./repo/event.js"
import type { PrEvent } from "./pr/event.js"
import { prEventKeys } from "./pr/event.js"
import type { ProjectEvent } from "./project/event.js"
import { projectEventKeys } from "./project/event.js"
import type { RepoEvent } from "./repo/event.js"
import { repoEventKeys } from "./repo/event.js"

/**
* When you have a webhook with an event, Bitbucket Data Center sends the event
Expand Down

0 comments on commit 88a9ed5

Please sign in to comment.