diff --git a/sanic/app.py b/sanic/app.py index bb920c5c..8c152744 100644 --- a/sanic/app.py +++ b/sanic/app.py @@ -568,6 +568,13 @@ class Sanic: self.is_running = False log.info("Server Stopped") + # -------------------------------------------------------------------- # + # Goin' fast + # -------------------------------------------------------------------- # + + def go_fast(self, *args, **kwargs): + self.run(*args, **kwargs) + def stop(self): """This kills the Sanic""" get_event_loop().stop()