Spaces:
Paused
Paused
File size: 1,235 Bytes
81205f1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | package cmd
import (
"os"
"os/signal"
"github.com/BioHazard786/Warpdrop/cli/internal/ui"
"github.com/BioHazard786/Warpdrop/cli/internal/version"
"github.com/spf13/cobra"
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "warpdrop",
Short: "Peer-to-peer file transfer tool using WebRTC, with webapp support and cross-functional design",
Long: `WarpDrop is a command-line tool for transferring files directly between devices using WebRTC technology. It eliminates the need for intermediaries, ensuring fast and secure file sharing. WarpDrop also includes a webapp interface for browser-based transfers and is designed to be cross-functional across different platforms and environments.`,
Version: version.Version,
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
sig := make(chan os.Signal, 1)
signal.Notify(sig, os.Interrupt)
go func() {
<-sig
os.Exit(0)
}()
rootCmd.SilenceErrors = true
rootCmd.SilenceUsage = true
if err := rootCmd.Execute(); err != nil {
ui.PrintError(err.Error())
os.Exit(1)
}
}
|