update kafka messaging

This commit is contained in:
Brian Cao 2022-08-25 11:07:47 -07:00
parent 9fea2fc77c
commit 46b4b98d40
6 changed files with 31 additions and 15 deletions

5
pages/api/heartbeat.js Normal file
View file

@ -0,0 +1,5 @@
import { ok } from 'lib/response';
export default async (req, res) => {
return ok(res, 'nice');
};