8 lines
174 B
Python
8 lines
174 B
Python
from .baloo_tools import BalooTools
|
|
|
|
|
|
def get_resolution(id):
|
|
"""Interfaz simplificada para la librería."""
|
|
tools = BalooTools()
|
|
return tools.get_resolution(id)
|