summaryrefslogtreecommitdiff
path: root/fs/__init__.py
blob: f843da2f27c163816eced0a7d0ccb5018418f409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
A filesystem abstraction.

"""

__version__ = "0.1.1dev"

__author__ = "Will McGugan (will@willmcgugan.com)"

from base import *
from helpers import *
__all__ = ['memoryfs',
           'mountfs',
           'multifs',
           'osfs',
           'utils',
           'zipfs',
           'helpers',
           'tempfs']