8 lines
141 B
Python
8 lines
141 B
Python
|
#!/usr/bin/env python
|
||
|
from pathlib import Path
|
||
|
|
||
|
from negromateweb.builder import Builder
|
||
|
|
||
|
builder = Builder(Path('bideoak'))
|
||
|
builder.build()
|