11 lines
224 B
Java
11 lines
224 B
Java
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);
|
|
}
|
|
}
|