1
0
forked from joey/godottest
2025-10-11 01:09:46 -04:00

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