Documentation ¶ Index ¶ type Client func NewClient(c io.ReadWriteCloser, user, aname string) (*Client, error) func (c *Client) Open(path string) (*File, error) type File func (f *File) Close() error func (f *File) Read(p []byte) (n int, err error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Client ¶ type Client struct { sync.Mutex // contains filtered or unexported fields } func NewClient ¶ func NewClient(c io.ReadWriteCloser, user, aname string) (*Client, error) func (*Client) Open ¶ func (c *Client) Open(path string) (*File, error) type File ¶ type File struct { // contains filtered or unexported fields } func (*File) Close ¶ func (f *File) Close() error func (*File) Read ¶ func (f *File) Read(p []byte) (n int, err error) Source Files ¶ View all Source files client.go Click to show internal directories. Click to hide internal directories.