Skip to content
Snippets Groups Projects
Select Git revision
  • b0e3479c82bd7468c7e9fccfe580fdad5af398a6
  • master default protected
  • test
3 results

testBeacon.py

Blame
  • MywebApplication.java 314 B
    package com.ajou.prcoding.myweb;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class MywebApplication {
    
    	public static void main(String[] args) {
    		SpringApplication.run(MywebApplication.class, args);
    	}
    
    }