Created
May 13, 2013 16:43
-
-
Save fsouza/5569686 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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