# -*- coding: utf-8 -*-
from flask_restful import Resource
				
class Health_Check(Resource):
	def get(self):
		return "System up and running :)", 200
