import { defineApiModule } from '../types.js' import { TIME_TRACKING_ENDPOINTS } from './api.js' export * from './api.js' export const TIME_TRACKING_MODULE = defineApiModule({ id: 'time-tracking', name: '时间统计', basePath: '/time', order: 20, version: '1.0.0', endpoints: TIME_TRACKING_ENDPOINTS, }) export type { TimeTrackingEndpoints } from './api.js'