Files
XCDesktop/shared/modules/time-tracking/index.ts

16 lines
375 B
TypeScript
Raw Normal View History

2026-03-08 01:34:54 +08:00
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'