gittuf/internal/cmd/rsl/remote/remote.go
Aditya Sirish A Yelgundhalli 2dc047ec98
*: Remove some unnecessary pieces
Signed-off-by: Aditya Sirish A Yelgundhalli <ayelgundhall@bloomberg.net>
2025-02-18 10:54:27 -05:00

25 lines
575 B
Go

// Copyright The gittuf Authors
// SPDX-License-Identifier: Apache-2.0
package remote
import (
"github.com/gittuf/gittuf/internal/cmd/rsl/remote/pull"
"github.com/gittuf/gittuf/internal/cmd/rsl/remote/push"
"github.com/gittuf/gittuf/internal/cmd/rsl/remote/reconcile"
"github.com/spf13/cobra"
)
func New() *cobra.Command {
cmd := &cobra.Command{
Use: "remote",
Short: "Tools for managing remote RSLs",
DisableAutoGenTag: true,
}
cmd.AddCommand(pull.New())
cmd.AddCommand(push.New())
cmd.AddCommand(reconcile.New())
return cmd
}