initial commit

This commit is contained in:
2025-09-01 20:47:58 +08:00
commit 12c51b5ddb
843 changed files with 475321 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
// Copyright (c) 2017, Tencent Inc.
// All rights reserved.
//
// Author: sevenyou <sevenyou@tencent.com>
// Created: 11/14/17
// Description:
#ifndef SERVICE_REQ_H
#define SERVICE_REQ_H
#pragma once
#include "cos_defines.h"
#include "request/base_req.h"
#include "util/string_util.h"
namespace qcloud_cos {
class GetServiceReq : public BaseReq {
public:
GetServiceReq() {
SetMethod("GET");
SetPath("/");
}
virtual ~GetServiceReq() {}
};
} // namespace qcloud_cos
#endif // SERVICE_REQ_H