Skip to content

Instantly share code, notes, and snippets.

@fsouza
Created May 13, 2013 16:43
Show Gist options
  • Select an option

  • Save fsouza/5569686 to your computer and use it in GitHub Desktop.

Select an option

Save fsouza/5569686 to your computer and use it in GitHub Desktop.
package docker
type Client struct {
server string
}
func NewClient(server string) *Client {
return &Client{server: server}
}
func (c *Client) ListContainers(options *ListContainerOptions) ([]Container, error) {
return nil, nil
}
func (c *Client) CreateContainer(options *CreateContainerOptions) error {
return nil
}
func (c *Client) InspectContainer(id string) (Container, error) {
return nil, nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment