parent
de2894d9a2
commit
88a34b4a4a
@ -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…
Reference in new issue