mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-26 01:04:06 +08:00
13 lines
216 B
Go
13 lines
216 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"shylinux.com/x/ice"
|
|
_ "shylinux.com/x/icebergs/misc/ssh"
|
|
)
|
|
|
|
func main() {
|
|
defer func() { recover() }()
|
|
print(ice.Run(append([]string{"ssh.service", "listen"}, os.Args[1:]...)...))
|
|
} |