mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-05 15:42:33 +00:00
9 lines
250 B
Python
9 lines
250 B
Python
from twisted.internet import reactor
|
|
from twisted.web.wsgi import WSGIResource
|
|
|
|
from .. import exposition, REGISTRY
|
|
|
|
MetricsResource = lambda registry=REGISTRY: WSGIResource(
|
|
reactor, reactor.getThreadPool(), exposition.make_wsgi_app(registry)
|
|
)
|