slither handle in ide

pull/1398/head
aniket-engg 4 years ago committed by Aniket
parent 4a1c86fe14
commit 8253eb60e6
  1. 18
      apps/remix-ide/src/app/files/slither-handle.js

@ -0,0 +1,18 @@
import { WebsocketPlugin } from '@remixproject/engine-web'
import * as packageJson from '../../../../../package.json'
const profile = {
name: 'slither',
displayName: 'Slither',
url: 'ws://127.0.0.1:65523',
methods: [],
description: 'Using Remixd daemon, run slither static analysis',
kind: 'other',
version: packageJson.version
}
export class SlitherHandle extends WebsocketPlugin {
constructor () {
super(profile)
}
}
Loading…
Cancel
Save