mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-16 04:02:53 -06:00
10 lines
154 B
Python
10 lines
154 B
Python
import sys
|
|
|
|
__all__ = ['files']
|
|
|
|
|
|
if sys.version_info < (3, 9):
|
|
from importlib_resources import files
|
|
else:
|
|
from importlib.resources import files
|