Event-CRUD-Flask-python3-API/services/EventNotifyerService.py

10 lines
315 B
Python
Raw Normal View History

2024-01-08 20:03:51 +00:00
# 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 EventNotifyerServer:
def __init__(self):
pass
def locate_upcoming_events():
return EventService.get_all_upcomming_events()