| 1 | package com.tecmilenio.mapsconect; |
| 2 | |
| 3 | import org.springframework.boot.SpringApplication; |
| 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; |
| 5 | |
| 6 | @SpringBootApplication |
| 7 | public class MapsConectApplication { |
| 8 | |
| 9 | public static void main(String[] args) { |
| 10 | SpringApplication.run(MapsConectApplication.class, args); |
| 11 | } |
| 12 | |
| 13 | } |