// SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
//
// SPDX-License-Identifier: AGPL-3.0-or-later

package g

import (
	"fmt"

	"github.com/spf13/cobra"
)

var GCmd = &cobra.Command{
	Use:   "g",
	Short: "Goal commands",
	Long:  `Manage the session goal`,
	Run: func(cmd *cobra.Command, args []string) {
		fmt.Println("[STUB] Display goal and description")
		fmt.Println("Goal: Example goal title")
		fmt.Println("Description: Example goal description")
	},
}
