mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-23 12:19:36 +00:00
feat: Testing fluentd logging driver
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import type { RequestHandler } from '@sveltejs/kit';
|
||||
|
||||
export const post: RequestHandler = async (event) => {
|
||||
const data = await event.request.json();
|
||||
console.log(data);
|
||||
return {
|
||||
status: 200,
|
||||
body: {}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user