source: src/main/java/edu/gjoko/schedlr/SchedlrApplication.java@ cf9cdbf

Last change on this file since cf9cdbf was cf9cdbf, checked in by Gjoko <goko_kostadinov@…>, 21 months ago

Initial commit.

  • Property mode set to 100644
File size: 324 bytes
Line 
1package edu.gjoko.schedlr;
2
3import org.springframework.boot.SpringApplication;
4import org.springframework.boot.autoconfigure.SpringBootApplication;
5
6@SpringBootApplication
7public class SchedlrApplication {
8
9 public static void main(String[] args) {
10 SpringApplication.run(SchedlrApplication.class, args);
11 }
12
13}
Note: See TracBrowser for help on using the repository browser.