1from providers import *
2
3from basic.blog.models import Post
4from basic.media.models import Photo
5from completion.listeners import start_listening
6from genericm2m.utils import monkey_patch
7
8
9# monkey patch the Post model with a related objects descriptor
10monkey_patch(Post)
11monkey_patch(Photo)
12
13# configure our signal handlers so we can update the autocomplete index on
14# model save & delete
15start_listening()
16