github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/plugin/client/define.go (about)

     1  package client
     2  
     3  type Plugin struct {
     4  	Name        string
     5  	Kind        string
     6  	Status      string
     7  	Description string
     8  	Spec        string
     9  	Manual      string
    10  }
    11  
    12  type Strategy struct {
    13  	//witch plugin strategy belongs to
    14  	PluginName string
    15  	Name       string
    16  	Status     string
    17  	Document   string
    18  }
    19  
    20  /*
    21  	define the app name and scale to witch number
    22  */
    23  type AppScale struct {
    24  	App    string
    25  	Number int
    26  }