mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-09 11:26:00 +00:00
- Split utils up again - Optimize performance when importing a specific storage. This is useful for khal which uses our FilesystemStorage (and doesn't want to import requests).
7 lines
302 B
Python
7 lines
302 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
There are storage classes which control the access to one vdir-collection and
|
|
offer basic CRUD-ish methods for modifying those collections. The exact
|
|
interface is described in `vdirsyncer.storage.base`, the `Storage` class should
|
|
be a superclass of all storage classes.
|
|
'''
|