add health endpoint
All checks were successful
Publish Docker Image / docker (push) Successful in 1m51s

This commit is contained in:
Lee
2023-07-12 10:16:52 +01:00
parent 2abf673955
commit a269b49714
2 changed files with 4 additions and 1 deletions

3
src/app/health/page.tsx Normal file
View File

@ -0,0 +1,3 @@
export default function Health() {
return <p>OK</p>;
}