mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
10 lines
261 B
JavaScript
Executable file
10 lines
261 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
/*
|
|
Logs a warning / informational message when user tries to
|
|
invoke 'solidity-coverage' as a shell command. This file
|
|
is listed as the package.json "bin".
|
|
*/
|
|
const AppUI = require('../lib/ui').AppUI;
|
|
|
|
(new AppUI()).report('command');
|