mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
import { artifacts, logger } from '@morten-olsen/mini-loader';
|
|
|
|
const run = async () => {
|
|
await logger.info('Hello world');
|
|
await artifacts.create('foo', 'bar');
|
|
process.exit(0);
|
|
};
|
|
|
|
run();
|