com.maxon.tomorrow.app.Application.java Source code

Java tutorial

Introduction

Here is the source code for com.maxon.tomorrow.app.Application.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.maxon.tomorrow.app;

import org.springframework.boot.SpringApplication;

/**
 *
 * @author Maksym_Kotii
 */
public class Application {

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

}