10 lines
184 B
Python
10 lines
184 B
Python
from pathlib import Path
|
|
from foucault.gui import *
|
|
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
conductofconduct = Foucault()
|
|
conductofconduct.watch("examples")
|
|
conductofconduct.run()
|
|
|