mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-24 06:45:59 +03:00
6 lines
142 B
JavaScript
6 lines
142 B
JavaScript
export default async (req, res) => {
|
|
return res
|
|
.status(200)
|
|
.json({ decorator: "SERVER_HEALTH_CHECK", data: { slate: true } });
|
|
};
|