mirror of
https://github.com/nwtgck/handy-sshd.git
synced 2025-06-07 14:43:05 +00:00
12 lines
150 B
Go
12 lines
150 B
Go
package main
|
|
|
|
import (
|
|
"github.com/nwtgck/handy-sshd/cmd"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.RootCmd().Execute(); err != nil {
|
|
os.Exit(-1)
|
|
}
|
|
}
|