mirror of
https://github.com/daeuniverse/dae.git
synced 2024-12-22 16:14:40 +07:00
35 lines
625 B
Go
35 lines
625 B
Go
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* Copyright (c) 2022-2024, daeuniverse Organization <dae@v2raya.org>
|
|
*/
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
honkCmd = &cobra.Command{
|
|
Use: "honk",
|
|
Short: "Let dae call for you.",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("Honk! Honk! Honk! This is dae!")
|
|
fmt.Println("\a\a\a\x1b[1A")
|
|
time.Sleep(3 * 100 * time.Millisecond)
|
|
fmt.Println("\a\a\a\x1b[1A")
|
|
time.Sleep(3 * 100 * time.Millisecond)
|
|
fmt.Println("\a\a\a\x1b[1A")
|
|
os.Exit(0)
|
|
},
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(honkCmd)
|
|
}
|