创建仓库

This commit is contained in:
zw
2025-08-01 13:59:30 +08:00
parent 7f6dbe8feb
commit 4c0d5dbd75
85 changed files with 3219 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package vvpkassistant;
import lombok.SneakyThrows;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import vvpkassistant.Data.WxChatParam;
import vvpkassistant.Tools.VVRequester;
@SpringBootTest
class ApplicationTests {
@Autowired
private WxChatParam wxChatParam;
@Test
@SneakyThrows
void contextLoads() {
System.out.println(wxChatParam);
}
}