Add frontend stubs

This commit is contained in:
Jakob Unterwurzacher 2015-09-03 19:09:23 +02:00
parent f8fddff769
commit 8a48609d0e
2 changed files with 18 additions and 0 deletions

9
frontend/file.go Normal file
View File

@ -0,0 +1,9 @@
package frontend
import (
"github.com/rfjakob/gocryptfs/cryptfs"
)
type File struct {
cryptfs.File
}

9
frontend/fs.go Normal file
View File

@ -0,0 +1,9 @@
package frontend
import (
"github.com/rfjakob/gocryptfs/cryptfs"
)
type FS struct {
cryptfs.FS
}