Source code for decocare.link


#
# TODO: move all constants to config module.
#

import serial
import logging
import lib
import fuser
io  = logging.getLogger( )
log = io.getChild(__name__)

[docs]class AlreadyInUseException (Exception): pass
if __name__ == '__main__': import doctest doctest.testmost( ) ##### # EOF