blob: 7d22cc1ef57b5c50347e27159077dcc527569fc0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package ssh
type Config struct {
Net string `scfg:"net"`
Addr string `scfg:"addr"`
Key string `scfg:"key"`
Root string `scfg:"root"`
ShutdownTimeout uint32 `scfg:"shutdown_timeout"`
}
|