Last active
December 27, 2015 03:19
-
-
Save shykes/7258130 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
interface GraphBackend { | |
Init(home string) error | |
Nuke() error | |
Create(img *Image, layer Archive) error | |
Delete(img *Image) error | |
Mount (img *Image, dest string) error | |
UnmountAll (img *Image) error | |
DiffList(*Image, dest string) ([]Change, error) | |
DiffLayer(*Image, dest string) (Archive, error) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment