19 lines
365 B
TypeScript
19 lines
365 B
TypeScript
import { ProcessInfoImpl } from '@/core/process/impl/ProcessInfoImpl.ts'
|
|
|
|
/**
|
|
* 基础系统进程信息
|
|
*/
|
|
export const BasicSystemProcessInfo = new ProcessInfoImpl({
|
|
name: 'basic-system',
|
|
title: '基础系统进程',
|
|
isJustProcess: true,
|
|
version: {
|
|
company: 'XZG',
|
|
major: 1,
|
|
minor: 0,
|
|
build: 0,
|
|
private: 0
|
|
},
|
|
singleton: true
|
|
});
|