16 lines
265 B
TypeScript
16 lines
265 B
TypeScript
|
import type { App } from "@calcom/types/App";
|
||
|
|
||
|
import config from "./config.json";
|
||
|
|
||
|
export const metadata = {
|
||
|
category: "calendar",
|
||
|
installed: true,
|
||
|
rating: 0,
|
||
|
reviews: 0,
|
||
|
trending: true,
|
||
|
verified: true,
|
||
|
...config,
|
||
|
} as App;
|
||
|
|
||
|
export default metadata;
|