14 lines
319 B
Python
14 lines
319 B
Python
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
'''
|
|
@File : config.py
|
|
@Time : 2020/09/22 18:57:19
|
|
@Author : Lateautumn4lin
|
|
@Version : 1.0
|
|
@Contact : Lateautumn4lin
|
|
@License : (C)Copyright 2020
|
|
@Desc : None
|
|
'''
|
|
from pathlib import Path
|
|
PRASE_PATH = Path(__file__).absolute().parent / "parse.js"
|