This commit is contained in:
2025-08-30 16:03:37 -04:00
parent 391bf3d1f8
commit a168786465
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
import { createHonoRoute } from "../../../util/import.ts";
export const route = createHonoRoute("/messages");
route.app.get('/v2/get', async c => {
return c.json(await c.get('profile').Messages.getMessages());
});

View File

@@ -37,4 +37,8 @@ interface MessageBase {
export class ProfileMessageManager extends ProfileContentManager {
async getMessages() {
return [];
}
}