16 lines
519 B
Python
16 lines
519 B
Python
from logging import getLogger
|
|
|
|
log = getLogger("timeform")
|
|
from .entrypoints_utils import get_one_entrypoint
|
|
|
|
|
|
def get_timeform(kind):
|
|
"""Messes with entrypoints to return a TimeForm"""
|
|
for group in ("larigira.timeform_create", "larigira.timeform_receive"):
|
|
yield get_one_entrypoint(group, kind)
|
|
|
|
|
|
def get_audioform(kind):
|
|
"""Messes with entrypoints to return a AudioForm"""
|
|
for group in ("larigira.audioform_create", "larigira.audioform_receive"):
|
|
yield get_one_entrypoint(group, kind)
|