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

// Package person provides commands for managing Lunatask relationships.
package person

import "github.com/spf13/cobra"

// Cmd is the parent command for person operations.
var Cmd = &cobra.Command{
	Use:     "person",
	Short:   "Manage people (relationships)",
	GroupID: "resources",
}

func init() {
	Cmd.AddCommand(AddCmd)
	Cmd.AddCommand(ListCmd)
	Cmd.AddCommand(ShowCmd)
	Cmd.AddCommand(UpdateCmd)
	Cmd.AddCommand(DeleteCmd)
	Cmd.AddCommand(TimelineCmd)
}
