mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
9 lines
183 B
Python
9 lines
183 B
Python
import sys
|
|
import os
|
|
path = os.path.dirname(os.path.realpath(__file__))
|
|
path = os.path.realpath(os.path.join(path, '..'))
|
|
sys.path.append(path)
|
|
from confluent import main
|
|
|
|
main.run()
|