mirror of
https://github.com/harness/drone.git
synced 2025-05-06 05:40:32 +08:00
8 lines
138 B
Go
8 lines
138 B
Go
package model
|
|
|
|
type Netrc struct {
|
|
Machine string `json:"machine"`
|
|
Login string `json:"login"`
|
|
Password string `json:"password"`
|
|
}
|