初始化

This commit is contained in:
wyf
2026-01-20 21:30:10 +08:00
commit c54f76cd0c
34 changed files with 5262 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
class HttpStatusCode {
static const int ok = 200; // 请求成功,服务器已返回请求的数据。
static const int internalServerError = 500; // 服务器内部错误。
}