1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00
profanity/plugins/helloworld.py

23 lines
427 B
Python
Raw Normal View History

2013-07-30 18:37:46 -04:00
import prof
package_version = None
package_status = None
# hooks
def prof_init(version, status):
global package_version
global package_status
package_version = version
package_status = status
def prof_on_start():
helloworld()
# local functions
def helloworld():
global package_version
global package_status
prof.cons_show("Hello world! (" + package_version + " - " + package_status + ")")