mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 19:43:08 +02:00
8 lines
136 B
TypeScript
8 lines
136 B
TypeScript
import db from '../db/mongodb';
|
|
|
|
const Meta = db.get<IMeta>('meta');
|
|
export default Meta;
|
|
|
|
export type IMeta = {
|
|
broadcasts: any[];
|
|
};
|