UNPKG

peertube-plugin-livechat

Version:

PeerTube plugin livechat: create chat rooms for your Peertube lives! Comes with many features: federation, moderation tools, chat bot, chat persistence, OBS integration, ...

15 lines (12 loc) 489 B
// SPDX-FileCopyrightText: 2024-2025 John Livingston <https://www.john-livingston.fr/> // // SPDX-License-Identifier: AGPL-3.0-only import type { RegisterServerOptions } from '@peertube/peertube-types' import { newResult, TestResult } from './utils' export async function diagBackend (test: string, _options: RegisterServerOptions): Promise<TestResult> { const result = newResult(test) result.label = 'Backend connection' result.ok = true result.next = 'debug' return result }