mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-27 21:03:11 +08:00
10 lines
198 B
Go
10 lines
198 B
Go
package ssh
|
|
|
|
type AuthMethodType string
|
|
|
|
const (
|
|
AuthMethodTypeNone AuthMethodType = "none"
|
|
AuthMethodTypePassword AuthMethodType = "password"
|
|
AuthMethodTypeKey AuthMethodType = "key"
|
|
)
|