Build: Update server-dist artifacts for v0.1.4

This commit is contained in:
2025-10-08 11:24:03 +02:00
parent cceb4d4e60
commit db1a401230
7 changed files with 152 additions and 14 deletions

10
server-dist/rpc/social.js Normal file
View File

@@ -0,0 +1,10 @@
import { os } from "@orpc/server";
const getSocialMedia = os.handler(async () => {
return {
tiktokProfile: process.env.TIKTOK_PROFILE,
instagramProfile: process.env.INSTAGRAM_PROFILE,
};
});
export const router = os.router({
getSocialMedia,
});