mirror of
https://github.com/nwtgck/handy-sshd.git
synced 2025-06-08 07:03:04 +00:00
14 lines
200 B
Go
14 lines
200 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/nwtgck/handy-sshd/cmd"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.RootCmd.Execute(); err != nil {
|
|
_, _ = fmt.Fprintf(os.Stderr, err.Error())
|
|
os.Exit(-1)
|
|
}
|
|
}
|