summaryrefslogtreecommitdiff
path: root/spring-framework/spring-task-manager-structure/src/main/java/com/example/spring/App.java
blob: 0df54bc3d6aebb15eb3896c0f51c61e922d85e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.example.spring;

import com.example.spring.task.TaskManagerApp;

public class App {
	public static void main(String[] args) {
		// Actually, BankApp is the class with the main method.
		// It should have been executed directly instead of this class.
		TaskManagerApp.main(args);
	}
}