mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 18:32:15 +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)
|
|
)
|