peertube-plugin-livechat/server/lib/diagnostic/prosody.ts

8 lines
255 B
TypeScript
Raw Normal View History

import { newResult, TestResult } from './utils'
export async function diagProsody (test: string, _options: RegisterServerOptions): Promise<TestResult> {
const result = newResult(test)
result.label = 'Builtin Prosody and ConverseJS'
return result
}