File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ func serviceFlags() []cli.Flag {
8888 }
8989}
9090
91- // applyPlatformFlags applys platform-specific flags.
91+ // applyPlatformFlags applies platform-specific flags.
9292func applyPlatformFlags (context * cli.Context ) {
9393
9494 if s := context .GlobalString ("service-name" ); s != "" {
Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ type RuntimeInfo struct {
8686
8787// Store interacts with the underlying container storage
8888type Store interface {
89+ // Get a container using the id.
90+ //
91+ // Container object is returned on success. If the id is not known to the
92+ // store, an error will be returned.
8993 Get (ctx context.Context , id string ) (Container , error )
9094
9195 // List returns containers that match one or more of the provided filters.
You can’t perform that action at this time.
0 commit comments