From 6a44b074f0169a1b0f9e92347af929c5e471746e Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Sat, 18 Apr 2015 13:44:44 +0200 Subject: Reorganised projects --- Week9 Webshop/src/com/camilstaps/shop/Shop.java | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Week9 Webshop/src/com/camilstaps/shop/Shop.java (limited to 'Week9 Webshop/src/com/camilstaps/shop/Shop.java') diff --git a/Week9 Webshop/src/com/camilstaps/shop/Shop.java b/Week9 Webshop/src/com/camilstaps/shop/Shop.java new file mode 100644 index 0000000..cab828a --- /dev/null +++ b/Week9 Webshop/src/com/camilstaps/shop/Shop.java @@ -0,0 +1,23 @@ +/** + * 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(); + } + +} -- cgit v1.2.3