2023-03-11 18:29:41 +09:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
sys.path.append(os.path.realpath(os.path.dirname(__file__)+"/src"))
|
|
|
|
sys.path.append(os.path.realpath(os.path.dirname(__file__)+"/assets"))
|
2023-01-19 17:37:40 +09:00
|
|
|
from src.build import build
|
|
|
|
import config
|
|
|
|
if __name__ == "__main__": build(config.config)
|