7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
import { createHandlers } from "./utils.ts";
|
|
|
|
export const pingHandler = createHandlers(async (c) => {
|
|
return c.json({
|
|
"message": "pong"
|
|
});
|
|
}); |