Skip to content

Commit

Permalink
Merge pull request #46 from windchime-yk/main
Browse files Browse the repository at this point in the history
Add Deno
  • Loading branch information
alisalahio authored Aug 1, 2022
2 parents 2f24b8e + 3683a1a commit 84afe5d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/services/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Freecodecamp from './instatus/freecodecamp'
import Plausible from './instatus/plausible'
import Primcloud from './instatus/primcloud'
import SpaceHey from './instatus/spacehey'
import Deno from './instatus/deno';

// Statuspage services
import Acquia from './statuspage/acquia'
Expand Down Expand Up @@ -163,6 +164,7 @@ const allServices = new Map<string, Service>([
['Plausible', new Plausible()],
['Primcloud', new Primcloud()],
['SpaceHey', new SpaceHey()],
['Deno', new Deno()],

// Statuspage pages
['Acquia', new Acquia()],
Expand Down
9 changes: 9 additions & 0 deletions src/services/instatus/deno.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import InstatusService from '../base/instatus'

class Deno extends InstatusService {
constructor() {
super('Deno', 'https://denostatus.com')
}
}

export default Deno

0 comments on commit 84afe5d

Please sign in to comment.