<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package com.bcxin.tenant.backend;

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

@SpringBootApplication
public class BackendTaskApp {
    public static void main(String[] args) {
        try {
            SpringApplication.run(BackendTaskApp.class, args);
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}
</pre></body></html>