Event-CRUD-Flask-python3-API/services/EventNotifyerService.py
2024-01-09 10:23:57 +02:00

10 lines
316 B
Python

# this Class is for the scheduler
#this class will have a function that locates the upcomming events Using the Event service.
from services.EventService import EventService
class EventNotifyerService:
def __init__(self):
pass
def locate_upcoming_events():
return EventService.get_all_upcomming_events()