Files
EdgeCommon/pkg/nodeconfigs/ssh_params.go

12 lines
251 B
Go
Raw Normal View History

2024-07-27 13:29:26 +08:00
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
package nodeconfigs
func DefaultSSHParams() *SSHParams {
return &SSHParams{Port: 22}
}
type SSHParams struct {
Port int `json:"port"`
}