You've already forked RekomenciBackend
feat(): push notifications via firebase admin
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from abc import abstractmethod
|
||||
from typing import Protocol
|
||||
|
||||
|
||||
class NotificationService(Protocol):
|
||||
@abstractmethod
|
||||
async def send_notification(self, identifier: str, title: str, body: str) -> None:
|
||||
raise NotImplementedError
|
||||
Reference in New Issue
Block a user