Created
November 7, 2013 20:05
-
-
Save shykes/7360995 to your computer and use it in GitHub Desktop.
This file contains 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
type Driver interface { | |
Create(id, parent string) error | |
Remove(id string) error | |
Get(id string) (dir string, err error) | |
Diff(id string) (archive.Archive, error) | |
DiffSize(id string) (bytes int64, err error) | |
Changes(id string) ([]Change, error) | |
Cleanup() error | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment