14 lines
220 B
Python
14 lines
220 B
Python
from __future__ import absolute_import
|
|
|
|
from .cleanup import cleanup
|
|
|
|
bootstrap_models = [
|
|
{
|
|
'name': 'documenttype',
|
|
},
|
|
{
|
|
'name': 'documenttypefilename',
|
|
}
|
|
]
|
|
cleanup_functions = [cleanup]
|