[api] refactoring: 'constants' module renamed to 'paths'

This commit is contained in:
Vinicius Moreira
2021-11-23 17:53:05 -03:00
parent 70073a7bad
commit 8f9810bd69
16 changed files with 15 additions and 15 deletions

View File

@@ -2,7 +2,7 @@ import os
from pathlib import Path
from typing import Optional
from bauh.api.constants import CONFIG_PATH, CACHE_PATH, TEMP_DIR
from bauh.api.paths import CONFIG_PATH, CACHE_PATH, TEMP_DIR
from bauh.commons import resource
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))