/* * Copyright (C) 2026 Fluxer Contributors * * This file is part of Fluxer. * * Fluxer is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Fluxer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Fluxer. If not, see . */ package cmd import ( "fmt" "os" "github.com/spf13/cobra" ) var statePath string var rootCmd = &cobra.Command{ Use: "livekitctl", Short: "LiveKit bootstrap and operations CLI", Long: "Self-hosted LiveKit bootstrap and operations CLI for installing and managing LiveKit servers.", } func Execute() error { return rootCmd.Execute() } func init() { rootCmd.PersistentFlags().StringVar(&statePath, "state", "", "Path to state file (default: /etc/livekit/livekitctl-state.json)") } func exitOnError(err error) { if err != nil { fmt.Fprintf(os.Stderr, "ERROR: %v\n", err) os.Exit(1) } }