10 lines
286 B
GDScript
10 lines
286 B
GDScript
var _os_report = preload("./os_report.gd").new()
|
|
var _module:PankuModule
|
|
|
|
const _HELP_execute = "Show detailed OS report"
|
|
func execute() -> String:
|
|
_module.core.notify("Please wait, this may take a while...")
|
|
_os_report.inspect()
|
|
var report = "".join(_os_report.rtl)
|
|
return report
|