2019-12-18 21:35:26 +01:00
|
|
|
package com.baeldung.shell;
|
2019-10-31 20:43:47 -05:00
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import org.springframework.shell.Bootstrap;
|
|
|
|
|
|
|
|
|
|
public class Main {
|
|
|
|
|
public static void main(String[] args) throws IOException {
|
|
|
|
|
Bootstrap.main(args);
|
|
|
|
|
}
|
|
|
|
|
}
|