houzhongjian
2025-03-12 e03505135d9816c8b6ea67a91a7e1f493e662b6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.iailab.sdk;
 
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
/**
 * 项目的主类
 *
 * @author iailab
 */
@SpringBootApplication
public class IailabPlatSdkMain {
 
    public static void main(String[] args) {
        System.out.println("I am the main class");
    }
 
}