LEFT | RIGHT |
(no file at all) | |
1 package params | 1 package params |
2 | 2 |
3 // ServiceExpose holds the parameters for making the ServiceExpose call. | 3 // ServiceExpose holds the parameters for making the ServiceExpose call. |
4 type ServiceExpose struct { | 4 type ServiceExpose struct { |
5 ServiceName string | 5 ServiceName string |
6 } | 6 } |
7 | 7 |
8 // ServiceSet holds the parameters for a ServiceSet | 8 // ServiceSet holds the parameters for a ServiceSet |
9 // command. Options contains the configuration data. | 9 // command. Options contains the configuration data. |
10 type ServiceSet struct { | 10 type ServiceSet struct { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 DeployerName string | 63 DeployerName string |
64 // TODO(rog) other unit attributes. | 64 // TODO(rog) other unit attributes. |
65 } | 65 } |
66 | 66 |
67 // User holds details of a user. | 67 // User holds details of a user. |
68 type User struct { | 68 type User struct { |
69 // This is a placeholder for any information | 69 // This is a placeholder for any information |
70 // that may be associated with a user in the | 70 // that may be associated with a user in the |
71 // future. | 71 // future. |
72 } | 72 } |
| 73 |
| 74 // CharmInfo stores parameters for a CharmInfo call. |
| 75 type CharmInfo struct { |
| 76 CharmURL string |
| 77 } |
LEFT | RIGHT |