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

// Package habit provides commands for tracking Lunatask habits.
package habit

import "github.com/spf13/cobra"

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

func init() {
	Cmd.AddCommand(ListCmd)
	Cmd.AddCommand(TrackCmd)
}
