register: frame out basic driver registration

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2017-04-20 14:46:38 -04:00
parent 71d8e2cb3a
commit 867595505e
Signed by: vbatts
GPG key ID: 10937E57733F1362
3 changed files with 52 additions and 3 deletions

View file

@ -2,5 +2,6 @@ package driver
// Driver is the vfs level driver to operate on filesystem trees (i.e.
// copy-on-write filesystems, etc)
type Driver struct {
type Driver interface {
Init(rootPath string) error
}