mirror of
https://github.com/antoniomika/sish.git
synced 2025-09-26 19:21:15 +08:00
17 lines
328 B
Go
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)
|
|
}
|
|
}
|