mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 00:06:30 +01:00
15 lines
236 B
Python
15 lines
236 B
Python
"""
|
|
Holds the events scheduled in scheduler.py.
|
|
"""
|
|
|
|
schedule = {
|
|
'event_example': 60,
|
|
}
|
|
|
|
lastrun = {}
|
|
|
|
def event_example():
|
|
"""
|
|
This is where the example event would be placed.
|
|
"""
|
|
pass
|