feat: platform

This commit is contained in:
Acbox
2026-01-12 00:45:32 +08:00
parent 6cd95bcaf7
commit 22aa5baaaa
14 changed files with 1011 additions and 2 deletions
+2 -1
View File
@@ -1,2 +1,3 @@
export * from './model'
export * from './schedule'
export * from './schedule'
export * from './platform'
+7
View File
@@ -0,0 +1,7 @@
export interface Platform {
id: string
name: string
endpoint: string
config: Record<string, unknown>
active: boolean
}