Files
certman/app/server/commands.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

18 lines
321 B
Go

package main
import (
"git.nevets.tech/Steven/certman/app"
"github.com/spf13/cobra"
)
func init() {
app.DaemonCmd.AddCommand(&cobra.Command{
Use: "start",
Short: "Start the daemon",
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
return app.RunDaemonCmd(&Daemon{})
},
})
}