habit.go
1// SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
2//
3// SPDX-License-Identifier: AGPL-3.0-or-later
4
5// Package habit provides commands for tracking Lunatask habits.
6package habit
7
8import "github.com/spf13/cobra"
9
10// Cmd is the parent command for habit operations.
11var Cmd = &cobra.Command{
12 Use: "habit",
13 Short: "Manage habits",
14 GroupID: "resources",
15}
16
17func init() {
18 Cmd.AddCommand(ListCmd)
19 Cmd.AddCommand(TrackCmd)
20}