6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2025-02-15 07:01:39 +00:00
tutor/bin/main.py

22 lines
384 B
Python
Raw Normal View History

#!/usr/bin/env python3
from tutor.plugins import OfficialPlugin
# Manually install plugins (this is for creating the bundle)
for plugin_name in [
"discovery",
"ecommerce",
# "figures",
"lts",
"minio",
"notes",
"xqueue",
]:
try:
OfficialPlugin.load(plugin_name)
except ImportError:
pass
2019-12-25 01:09:53 +01:00
from tutor.commands.cli import main
2019-12-25 01:15:50 +01:00
main()