...

Source file src/code.rocketnine.space/tslocum/sshtargate/config.go

Documentation: code.rocketnine.space/tslocum/sshtargate

     1  package main
     2  
     3  type portalConfig struct {
     4  	Command string
     5  	Host    []string `yaml:",flow"`
     6  }
     7  
     8  type appConfig struct {
     9  	Portals map[string]*portalConfig
    10  }
    11  
    12  var config = &appConfig{}
    13  

View as plain text