#!/usr/bin/env python
"""
cook

Entry point for the cooker module
"""
from cooker import Cooker

def main():
    """Begin cooking"""
    Cooker.cook()


if __name__ == "__main__":
    main()
