aboutsummaryrefslogtreecommitdiff
path: root/Week9/src/com/camilstaps/shop/Shop.java
blob: cab828a8dd699ea2a1465da86f8d2414e5b866d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
    }
    
}