12 lines
245 B
Python
12 lines
245 B
Python
from notifypy import Notify
|
|
|
|
|
|
class Notification:
|
|
@staticmethod
|
|
def notify(title: str, message: str):
|
|
notification = Notify()
|
|
notification.title = title
|
|
notification.message = message
|
|
notification.send()
|
|
|