6 lines
294 B
Python
6 lines
294 B
Python
"""Handy module to make access to all doctypes from a single place.
|
|
"""
|
|
from .doctype.lms_course.lms_course import LMSCourse as Course
|
|
from .doctype.lms_sketch.lms_sketch import LMSSketch as Sketch
|
|
from .doctype.lms_batch_membership.lms_batch_membership import LMSBatchMembership as Membership
|