18 lines
277 B
Python
18 lines
277 B
Python
defaults = {
|
|
'gocryptfs': {},
|
|
}
|
|
|
|
|
|
@metadata_reactor.provides(
|
|
'gocryptfs',
|
|
)
|
|
def gocryptfs(metadata):
|
|
gocryptfs = {}
|
|
|
|
for path, options in metadata.get('gocryptfs'):
|
|
gocryptfs[path] = {
|
|
}
|
|
|
|
return {
|
|
'gocryptfs': gocryptfs,
|
|
}
|