def getPostsLanding(): try: result = Posts.fetchPostsLandingJson() return Helpers.OK(result) except Exception as e: return Helpers.ERROR_INTERNAL(e)
def getPost(postroute): try: result = Posts.fetchPostJson(postroute) return Helpers.OK(result) except Exception as e: return Helpers.ERROR_INTERNAL(e)