BAEL-19967: Migrate spring-shell module to the com.baeldung package

This commit is contained in:
Krzysiek
2019-12-18 21:35:26 +01:00
parent 4465bb6fa9
commit 8b17262844
8 changed files with 8 additions and 8 deletions
@@ -0,0 +1,10 @@
package com.baeldung.shell;
import java.io.IOException;
import org.springframework.shell.Bootstrap;
public class Main {
public static void main(String[] args) throws IOException {
Bootstrap.main(args);
}
}