Skip to content
Snippets Groups Projects
__init__.py 267 B
Newer Older
  • Learn to ignore specific revisions
  • Jarrod Pas's avatar
    Jarrod Pas committed
    from .bubble import bubble
    from .direct import direct
    from .epidemic import epidemic
    from .flooding import flooding
    from .hcbf import hcbf
    
    types = {
        'bubble': bubble,
        'direct': direct,
        'epidemic': epidemic,
        'flooding': flooding,
        'hcbf': hcbf,
    }