aboutsummaryrefslogtreecommitdiff
path: root/Week9/src/com/camilstaps/shop/Shop.java
diff options
context:
space:
mode:
authorCamil Staps2015-04-18 00:26:48 +0200
committerCamil Staps2015-04-18 00:26:48 +0200
commit6dd7405206b2babfe491b59250f4d1d7f78e654b (patch)
treea5e53ec980a4cbdce038dd0beb3c8fe71fa0e80c /Week9/src/com/camilstaps/shop/Shop.java
parentAdded tarball w8 (diff)
Week9
Diffstat (limited to 'Week9/src/com/camilstaps/shop/Shop.java')
-rw-r--r--Week9/src/com/camilstaps/shop/Shop.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/Week9/src/com/camilstaps/shop/Shop.java b/Week9/src/com/camilstaps/shop/Shop.java
new file mode 100644
index 0000000..cab828a
--- /dev/null
+++ b/Week9/src/com/camilstaps/shop/Shop.java
@@ -0,0 +1,23 @@
+/**
+ * Copyright (c) 2015 Camil Staps <info@camilstaps.nl>
+ * 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();
+ }
+
+}