mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 14:43:03 +00:00
11 lines
217 B
Python
11 lines
217 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from tutor.commands.cli import main
|
||
|
|
||
|
# Manually adding plugins to bundle
|
||
|
from tutor.plugins import Plugins
|
||
|
import tutorminio.plugin
|
||
|
|
||
|
Plugins.EXTRA_INSTALLED["minio"] = tutorminio.plugin
|
||
|
main()
|