Files
certman/app/certs.go
Steven Tracey 6aacbfbb71
All checks were successful
Build (artifact) / build (push) Has been skipped
[CI-SKIP] Store Pre-Claude Code
2026-04-22 22:26:21 -04:00

16 lines
223 B
Go

package app
import (
"github.com/spf13/cobra"
)
var (
CertCmd = &cobra.Command{
Use: "cert",
Short: "Certificate management",
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
}
)