Files
Servo/main.go
2020-05-21 02:26:07 -04:00

17 lines
328 B
Go

// Package main represents the main entrypoint of the sish application.
package main
import (
"log"
"github.com/antoniomika/sish/cmd"
)
// main will start the sish command lifecycle and spawn the sish services.
func main() {
err := cmd.Execute()
if err != nil {
log.Println("Unable to execute root command:", err)
}
}