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