mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-04-02 14:40:25 +00:00
14 lines
276 B
Python
14 lines
276 B
Python
from __future__ import absolute_import
|
|
import os.path
|
|
|
|
from dddp.views import MeteorView
|
|
import tests
|
|
|
|
|
|
class MeteorTodos(MeteorView):
|
|
"""Meteor Todos."""
|
|
|
|
json_path = os.path.join(
|
|
os.path.dirname(tests.__file__),
|
|
'build', 'bundle', 'star.json'
|
|
)
|