1
0
Fork 0
peertube/shared/models/runners/runner.model.ts
Chocobozzz 0c9668f779 Implement remote runner jobs in server
Move ffmpeg functions to @shared
2023-05-09 08:57:34 +02:00

12 lines
177 B
TypeScript

export interface Runner {
id: number
name: string
description: string
ip: string
lastContact: Date | string
createdAt: Date | string
updatedAt: Date | string
}