forked from kate/uniborg
10 lines
150 B
Python
10 lines
150 B
Python
|
import logging
|
||
|
|
||
|
from uniborg import Uniborg
|
||
|
|
||
|
logging.basicConfig(level=logging.INFO)
|
||
|
|
||
|
borg = Uniborg("stdborg", plugin_path="stdplugins")
|
||
|
|
||
|
borg.run()
|