mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-23 22:46:35 +01:00
* refactor: ♻️ change schema * chore: 🔧 small changes * chore: 🔧 cleanup * chore: 🔧 cleanup types * chore: 🔧 change to absolute imports Co-authored-by: apotdevin <apotdevincab@gmail.com>
13 lines
402 B
TypeScript
13 lines
402 B
TypeScript
import { getForwardChannelsReport } from './resolvers/getForwardChannelsReport';
|
|
import { getForwardReport } from './resolvers/getForwardsReport';
|
|
import { getInOut } from './resolvers/getInOut';
|
|
import { getChannelReport } from './resolvers/getChannelReport';
|
|
|
|
export const widgetResolvers = {
|
|
Query: {
|
|
getForwardChannelsReport,
|
|
getForwardReport,
|
|
getInOut,
|
|
getChannelReport,
|
|
},
|
|
};
|