/** * Copyright (c) 2015 Camil Staps * See the LICENSE file for copying permission. */ package com.camilstaps.shop; /** * The webshop * @author Camil Staps, s4498062 */ public class Shop { /** * Create a shell and run * @param args */ public static void main(String[] args) { Shell sh = new Shell(new CLIInteraction()); sh.run(); } }