package com.example.demo;

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

/**
 * Main application class for the Spring Boot API.
 * This class contains the main method which starts the Spring Boot application.
 */
@SpringBootApplication
public class DemoApplication {

    /**
     * The main method which serves as the entry point for the application.
     * @param args Command line arguments.
     */
    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

}
