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

// Package journal provides commands for managing Lunatask journal entries.
package journal

import "github.com/spf13/cobra"

// Cmd is the parent command for journal operations.
var Cmd = &cobra.Command{
	Use:     "journal",
	Short:   "Manage journal entries",
	GroupID: "resources",
}

func init() {
	Cmd.AddCommand(AddCmd)
}
