mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
12 lines
308 B
Python
12 lines
308 B
Python
import prof
|
|
import platform
|
|
|
|
# hooks
|
|
def prof_init(version, status):
|
|
prof.register_command("/platform", 0, 0, "/platform", "Output system information.", "Output system information", cmd_platform)
|
|
|
|
# commands
|
|
def cmd_platform():
|
|
result_summary = platform.platform()
|
|
prof.cons_show(result_summary)
|