source: main/waeup.ikoba/trunk/src/waeup/ikoba/documents/__init__.py @ 11996

Last change on this file since 11996 was 11982, checked in by Henrik Bettermann, 10 years ago

Add base components for document management.

File size: 260 bytes
Line 
1"""This package contains everything regarding documents.
2"""
3# Make this a package.
4from waeup.ikoba.documents.container import DocumentsContainer
5from waeup.ikoba.documents.document import Document
6
7__all__ = [
8    'DocumentsContainer',
9    'Document',
10    ]
Note: See TracBrowser for help on using the repository browser.