7 lines
154 B
Python
7 lines
154 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
import os
|
||
|
|
||
|
path = os.path.dirname(__file__)
|
||
|
fonts_path = os.path.join(path, "fonts/")
|
||
|
images_path = os.path.join(path, 'images/')
|