Add doctor command support (#11)

This commit is contained in:
Hidenori Matsubayashi
2021-07-20 14:50:50 +09:00
committed by GitHub
parent eacaccf77b
commit 6221fd59b7
2 changed files with 163 additions and 54 deletions
+4 -1
View File
@@ -129,7 +129,10 @@ Future<void> main(List<String> args) async {
ELinuxWorkflow: () => ELinuxWorkflow(
operatingSystemUtils: globals.os,
),
ELinuxValidator: () => ELinuxValidator(),
ELinuxValidator: () => ELinuxValidator(
processManager: globals.processManager,
userMessages: globals.userMessages,
),
},
);
}