g.go
1// SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
2//
3// SPDX-License-Identifier: AGPL-3.0-or-later
4
5package g
6
7import (
8 "fmt"
9
10 "github.com/spf13/cobra"
11)
12
13var GCmd = &cobra.Command{
14 Use: "g",
15 Short: "Goal commands",
16 Long: `Manage the session goal`,
17 Run: func(cmd *cobra.Command, args []string) {
18 fmt.Println("[STUB] Display goal and description")
19 fmt.Println("Goal: Example goal title")
20 fmt.Println("Description: Example goal description")
21 },
22}