Updated Development_Contribution (markdown)

master
Chris Caron 2021-10-01 14:32:28 -04:00
parent 334aeaa5c7
commit 6a77eae52f
1 changed files with 3 additions and 1 deletions

@ -19,10 +19,12 @@ It basically boils down to this:
# plugins/NotifyFooBar.py might look like:
from .NotifyBase import NotifyBase
from ..AppriseLocale import gettext_lazy as _
class NotifyFooBar(NotifyBase):
# Define a human readable description of our object
service_name = 'FooBar Notification'
# _() is wrapped for future language translations
service_name = _('FooBar Notification')
# Our protocol:// Apprise will detect and hand off further
# parsing of the URL to your parse_url() function you write: