1
0
forked from x/ContextOS
This commit is contained in:
shaoying 2022-12-04 19:12:37 +08:00
parent eb34b9afcc
commit e97619a0aa

13
src/service.go Normal file
View File

@ -0,0 +1,13 @@
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:]...)...))
}