mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-05-05 15:25:35 +00:00
12 lines
264 B
TypeScript
12 lines
264 B
TypeScript
import * as mjolnirTesting from './mjolnirTesting';
|
|
|
|
console.log('wat')
|
|
switch (process.argv[2]) {
|
|
case 'up':
|
|
console.info('hmm')
|
|
mjolnirTesting.upHarness();
|
|
break;
|
|
case 'down':
|
|
mjolnirTesting.downHarness();
|
|
break;
|
|
} |