Skip to content

Commit

Permalink
feat: dae can call now (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
troubadour-hell authored Aug 19, 2023
1 parent 8bbfd69 commit c784eba
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions cmd/honk.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) 2022-2023, daeuniverse Organization <[email protected]>
*/

package cmd

import (
"fmt"
"os"

"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!")
os.Exit(0)
},
}
)

func init() {
rootCmd.AddCommand(honkCmd)
}

0 comments on commit c784eba

Please sign in to comment.