8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
// Minimal plugin set for lightweight client startup
|
|
import * as path from 'node:path';
|
|
import * as smartdaemon from '@push.rocks/smartdaemon';
|
|
import * as smartipc from '@push.rocks/smartipc';
|
|
|
|
export { path, smartdaemon, smartipc };
|
|
|