mirror of
https://github.com/veops/oneterm.git
synced 2025-09-27 19:52:09 +08:00
18 lines
210 B
Go
18 lines
210 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/veops/oneterm/cmd/ssh/app"
|
|
)
|
|
|
|
func main() {
|
|
command := app.NewServerCommand()
|
|
|
|
if err := command.Execute(); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|