10 lines
241 B
Python
10 lines
241 B
Python
|
def getRecentArticle():
|
||
|
# TODO fetch latest article
|
||
|
recent = {"title": "N/A", "link": "#"}
|
||
|
return recent
|
||
|
|
||
|
def getRecentDiscussion():
|
||
|
# TODO fetch latest discussion
|
||
|
recent = {"title": "N/A", "link": "#"}
|
||
|
return recent
|