route/vendor/github.com/Xe/x/tools/dokku/config.go

12 lines
238 B
Go
Raw Normal View History

2017-10-06 15:29:20 +00:00
package main
type Config struct {
Server map[string]*Server
}
type Server struct {
SSHKey string // if blank default key will be used.
Host string // hostname of the dokku server
User string // if blank username will be dokku
}