7 lines
113 B
Python
7 lines
113 B
Python
"""
|
|
Interface for the Polyline library.
|
|
"""
|
|
from .polyline import decode, encode
|
|
|
|
__all__ = ['decode', 'encode']
|