elstat/elstat/consts.py
Luna Mendes d92c09772e
add public api
- generalize elixire adapter into http adapter
 - fix ping adapter not sending a tuple
 - add ServiceWorker.process_work to insert results into the database
2018-07-09 02:48:44 -03:00

8 lines
114 B
Python

from .adapters import HttpAdapter, PingAdapter
ADAPTERS = {
'http': HttpAdapter,
'ping': PingAdapter,
}