Source code for bard.plugs.start

# bard/plugs/start.py
#
#

""" regen, regen. """

__copyright__ = "Copyright 2015, B.H.J Thate"

## IMPORTS

from bard.runtime import kernel

## CMNDS

[docs]def start(event): kernel.init(event.rest()) event.ok()
kernel.register("start", start)