mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { controller, httpGet } from 'inversify-express-utils'
|
|
|
|
@controller('/healthcheck')
|
|
export class HealthCheckController {
|
|
@httpGet('/')
|
|
public async get(): Promise<string> {
|
|
return 'OK'
|
|
}
|
|
}
|