fixing typo and added a missing comment.
Signed-off-by: Veeraiah Chowdary Nuvvula <venuvvul@microsoft.com>
This commit is contained in:
parent
ee916fe33c
commit
f6ac73d71e
@ -88,7 +88,7 @@ func serviceFlags() []cli.Flag {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// applyPlatformFlags applys platform-specific flags.
|
// applyPlatformFlags applies platform-specific flags.
|
||||||
func applyPlatformFlags(context *cli.Context) {
|
func applyPlatformFlags(context *cli.Context) {
|
||||||
|
|
||||||
if s := context.GlobalString("service-name"); s != "" {
|
if s := context.GlobalString("service-name"); s != "" {
|
||||||
|
@ -86,6 +86,10 @@ type RuntimeInfo struct {
|
|||||||
|
|
||||||
// Store interacts with the underlying container storage
|
// Store interacts with the underlying container storage
|
||||||
type Store interface {
|
type Store interface {
|
||||||
|
// Get a container using the id.
|
||||||
|
//
|
||||||
|
// Container object is returned on success. If the id is not known to the
|
||||||
|
// store, an error will be returned.
|
||||||
Get(ctx context.Context, id string) (Container, error)
|
Get(ctx context.Context, id string) (Container, error)
|
||||||
|
|
||||||
// List returns containers that match one or more of the provided filters.
|
// List returns containers that match one or more of the provided filters.
|
||||||
|
Loading…
Reference in New Issue
Block a user