10 lines
315 B
Python
10 lines
315 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 EventNotifyerServer:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
def locate_upcoming_events():
|
||
|
return EventService.get_all_upcomming_events()
|