001package com.streamconverter; 002 003import org.springframework.boot.SpringApplication; 004import org.springframework.boot.autoconfigure.SpringBootApplication; 005 006/** 007 * Spring Boot application entry point for StreamConverter Web API. 008 * 009 * <p>This application provides REST endpoints for processing data streams using the existing 010 * StreamConverter functionality. 011 */ 012@SpringBootApplication 013public class StreamConverterWebApplication { 014 015 /** 016 * Main method to start the Spring Boot application. 017 * 018 * @param args command line arguments 019 */ 020 public static void main(String[] args) { 021 SpringApplication.run(StreamConverterWebApplication.class, args); 022 } 023}