mirror of
https://github.com/p-stream/backend.git
synced 2026-01-11 20:10:33 +00:00
6 lines
No EOL
168 B
TypeScript
6 lines
No EOL
168 B
TypeScript
import { version } from "~/utils/config";
|
|
export default defineEventHandler((event) => {
|
|
return {
|
|
message: `Backend is working as expected (v${version})`
|
|
};
|
|
}); |