parent
1bd5fd5145
commit
cc5148cee5
@ -0,0 +1,11 @@
|
||||
from notifypy import Notify
|
||||
|
||||
|
||||
class Notification:
|
||||
@staticmethod
|
||||
def notify(title: str, message: str):
|
||||
notification = Notify()
|
||||
notification.title = title
|
||||
notification.message = message
|
||||
notification.send()
|
||||
|
Loading…
Reference in new issue