9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
import { json } from '@sveltejs/kit';
|
|
|
|
export const GET = () => {
|
|
return json({
|
|
status: 'ok',
|
|
service: 'flamy-trade'
|
|
});
|
|
};
|