迁移仓库

This commit is contained in:
2026-02-24 09:55:08 +08:00
parent 2d5c056b82
commit df6210aaf7
30 changed files with 1121 additions and 81 deletions

View File

@@ -0,0 +1,23 @@
//
// GDWebURLSessionService.h
// DESThreeTest
//
// Created by Qwerdf on 2025/10/24.
// Copyright © 2025 zhang alan. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "GDWebCustomURLSchemeProtocol.h"
NS_ASSUME_NONNULL_BEGIN
@interface GDWebURLSessionService : NSObject <GDWebCustomURLSchemeProtocol>
@property (nonatomic, strong) id<WKURLSchemeTask> schemeTask;
@property (nonatomic, copy) void(^completion)(void);
@property (nonatomic, strong) NSURLSessionDataTask *dataTask;
@property (nonatomic, weak) NSMutableDictionary *stopMarkDic;
@end
NS_ASSUME_NONNULL_END