mirror of https://github.com/openclaw/openclaw.git
19 lines
322 B
TypeScript
19 lines
322 B
TypeScript
export function createEmptyRequirements() {
|
|
return {
|
|
bins: [],
|
|
anyBins: [],
|
|
env: [],
|
|
config: [],
|
|
os: [],
|
|
};
|
|
}
|
|
|
|
export function createEmptyInstallChecks() {
|
|
return {
|
|
requirements: createEmptyRequirements(),
|
|
missing: createEmptyRequirements(),
|
|
configChecks: [],
|
|
install: [],
|
|
};
|
|
}
|