Skip to content
Snippets Groups Projects
KanbanApplication.java 324 B
Newer Older
Alexandre Vandekerkhove's avatar
Alexandre Vandekerkhove committed
package fr.lille.ippon.challenge.kanban;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class KanbanApplication {

	public static void main(String[] args) {
		SpringApplication.run(KanbanApplication.class, args);
	}

}