Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 596 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 596 Bytes

drongo-nest Build Status Coverage

High performance server for drongo.

Getting Started

from drongo import Drongo
from nest import Nest


app = Drongo()  # Drongo app
nest = Nest(app=app, auto_reload=True)
try:
    nest.run()
except KeyboardInterrupt:
    print('Shutting down')
finally:
    nest.shutdown()